/*
	
	Theme Name: Goldwood Kennels
	Author: Jordan Slominski
	Author URI: http://jordanslominski.com
	Description: WordPress theme for goldwoodkennels.com
	
*/
html, body {
	font-family: 'Merriweather', serif;
	overflow-x: hidden;
	min-height: 100%;
}

body main:before {
	content: '';
	background: -moz-linear-gradient(top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background-size: 100% 200%;
	background-position: 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 140px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', sans-serif;
}

/* general class to use for css transitions */
.gwk_fx-50ms {
	-webkit-transition: all 0.05s ease-in-out;
	transition: all 0.05s ease-in-out;
}
.gwk_fx-100ms {
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.gwk_fx-150ms {
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.gwk_fx-200ms {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.gwk_fx-250ms {
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

/* header */
.gwk_header {
	background: -moz-linear-gradient(top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
	background-position: 0 -100%;
	background-size: 100% 200%;
	z-index: 100;
	width: 100%;
	height: 100px;
}
@media (max-width: 33.9em) {
	.gwk_header {
		height: 50px;
	}
}
.gwk_header.gwk_sticky-header {
	background-position: 0 -200%;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 74.9em) {
	.gwk_header.offcanvas-active {
		left: -75%;
	}
}
.gwk_navbar-brand {
    background: white url("images/goldwood-logo.jpg") center center no-repeat;
    background-size: 100%;
    display: block;
    padding: 0;
    margin: 32px 0 0 16px;
    width: 240px;
    height: 80px;
    border: 5px solid white;
    border-radius: 0.3rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    transition: margin-top 0.15s ease-in-out,
                width 0.15s ease-in-out,
                height 0.15s ease-in-out,
                border-width 0.15s ease-in-out;
}
@media (max-width: 61.9em) {
    .gwk_navbar-brand {
        margin-top: 20px;
        margin-left: 0;
    }
}
@media (max-width: 47.9em) {
    .gwk_navbar-brand {
        margin-left: 16px;
    }
}
@media (max-width: 33.9em) {
    .gwk_navbar-brand {
        margin-left: 0;
        width: 165px;
        height: 57px;
    }
}
.gwk_header.gwk_sticky-header .gwk_navbar-brand {
    margin-top: 2px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 30%);
}
@media (max-width: 33.9em) {
    .gwk_header.gwk_sticky-header .gwk_navbar-brand {
        margin-top: 0;
        width: 120px;
        height: 35px;
        border-width: 2px;
        border-radius: 0.25rem;
    }
}
.gwk_header-nav {
	margin-top: 50px;
}
@media (max-width: 74.9em) {
	.gwk_header-nav {
		display: none;
	}
	.gwk_header-nav-mobile {
		color: #fff;
		font-size: 20px;
		line-height: 26px;
    	text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    	display: block;
    	float: right;
    	position: absolute;
    	top: 46px;
    	right: 10px;
    	padding: 10px 15px;
    	border-radius: 0.3rem;
    	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
	}
	.gwk_header-nav-mobile:focus,
	.gwk_header-nav-mobile:hover {
		color: #fff;
	}
	.gwk_header-nav-mobile:hover {
		background-color: rgba(255, 255, 255, 0.2);
	}
}
@media (min-width: 75em) {
	.gwk_header-nav-mobile {
		display: none;
	}
	.gwk_header-nav-shop-now {
		display: none;
	}
}
.gwk_header.gwk_sticky-header .gwk_header-nav {
	margin-top: 20px;
}
@media (max-width: 74.9em) {
	.gwk_header.gwk_sticky-header .gwk_header-nav-mobile {
		color: #333;
		line-height: 60px;
		text-align: center;
		text-shadow: none;
		top: 20px;
		padding: 0;
		width: 60px;
		height: 60px;
		border-radius: 50%;
	}
	.gwk_header.gwk_sticky-header .gwk_header-nav-mobile:hover {
		color: #fff;
		background-color: rgba(193, 40, 41, 0.85);
	}
	.gwk_header-nav-shop-now {
		color: white;
		font-family: 'Lato', sans-serif;
		font-size: 18px;
		text-decoration: none;
		background-color: rgb(193, 40, 41);
		position: absolute;
		top: 46px;
		right: 80px;
		padding: 0.5em 1em;
		border-radius: 0.25em;
	}
	.gwk_header-nav-shop-now::before {
		content: '\f291';
		font-family: FontAwesome;
		margin-right: 10px;
	}
	.gwk_header-nav-shop-now:focus,
	.gwk_header-nav-shop-now:hover {
		color: white;
		text-decoration: none;
	}
	.gwk_sticky-header .gwk_header-nav-shop-now {
		top: 28px;
	}
}
@media (max-width: 33.9em) {
	.gwk_header-nav-mobile {
		top: 39px;
		padding: 5px 12px;
	}
	.gwk_header.gwk_sticky-header .gwk_header-nav-mobile {
		line-height: 50px;
		top: 0;
		right: 5px;
		padding: 0;
		width: 50px;
		height: 50px;
	}
	.gwk_header.gwk_sticky-header .gwk_header-nav-mobile:hover {
		color: rgba(193, 40, 41, 0.85);
		background-color: transparent;
	}
	.gwk_header.gwk_sticky-header .gwk_header-nav-mobile .fa {
		font-size: 20px;
		line-height: 50px;
	}
	.gwk_header-nav-shop-now {
		font-size: 14px;
		top: 40px;
		right: 65px;
	}
	.gwk_sticky-header .gwk_header-nav-shop-now {
		top: 7px;
		right: 60px;
	}
}

@media (max-width: 374px) {
	.gwk_header-nav-shop-now .text {
		display: none;
	}
	.gwk_header-nav-shop-now::before {
		margin-right: 0;
	}
}

.gwk_header-nav .nav-link {
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 17.5px;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
	text-decoration: none;
}
@media (min-width: 48em) and (max-width: 61.9em) {
	.gwk_header-nav .nav-link {
		font-size: 16px;
	}
}
@media (max-width: 47.9em) {
	.gwk_header-nav .nav-link {
		padding: 0.5rem 0.75rem;
	}
}
.gwk_header.gwk_sticky-header .nav-link {
	color: #333;
	font-size: 18px;
	text-shadow: none;
}
@media (min-width: 48em) and (max-width: 61.9em) {
	.gwk_header.gwk_sticky-header .nav-link {
		font-size: 16px;
	}
}
.gwk_header .nav-link:focus,
.gwk_header .nav-link:hover {
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.2);
}
.gwk_header.gwk_sticky-header .nav-link:focus,
.gwk_header.gwk_sticky-header .nav-link:hover,
.gwk_header-nav .active .nav-link {
	color: #fff;
	text-shadow: none;
	text-decoration: none;
	background-color: rgba(193, 40, 41, 0.75);
}
.gwk_header.gwk_sticky-header .active .nav-link:focus,
.gwk_header.gwk_sticky-header .active .nav-link:hover,
.gwk_header-nav .active .nav-link {
	background-color: rgb(193, 40, 41);
}
.gwk_header-nav .shop-now .nav-link::before {
	content: '\f291';
	font-family: FontAwesome;
	margin-right: 10px;
}


.gwk_section {
	/*background: transparent url(../images/bg_noise-ffffff.jpg);*/
	background-color: #fff;
	padding: 60px 0;
}
@media (max-width: 47.9em) {
	.gwk_section {
		padding: 30px 0;
	}
}
.gwk_section-padding-top {
	padding-top: 60px;
}
.gwk_subnav + .gwk_section-top {
	/*padding-top: 80px;*/
	padding-top: 0;
	/*-webkit-transition: padding-top 1s ease-in-out;
	transition: padding-top 1s ease-in-out;*/
}
.gwk_section-top {
	padding-top: 60px;
}
@media (max-width: 47.9em) {
	.gwk_section-top {
		padding-top: 30px;
	}
}
.gwk_section-bg-image {
	position: relative;
	overflow: hidden;
}
.gwk_section-bg-image:before,
.gwk_section-bg-image:after {
	content: '';
	position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
.gwk_section-bg-image:before {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	-o-filter: blur(5px);
	filter: blur(5px);
}
.gwk_section-bg-image:after {
    background-color: rgba(0, 0, 0, 0.5);
}
.gwk_section-map {
	position: relative;
	padding: 0;
}


@media (min-width: 48em) {
	.gwk_section-bg-image.gwk_section-top > .container {
		margin-top: 60px;
		-webkit-transition: margin-top 0.15s ease-in-out;
		transition: margin-top 0.15s ease-in-out;
	}
	.gwk_sticky-subnav + .gwk_section-bg-image.gwk_section-top > .container {
		margin-top: 0;
	}
}
@media (max-width: 47em) {
	/*.gwk_section-bg-image.gwk_section-top {*/
	.gwk_section-top {
		-webkit-transition: padding-top 0.15s ease-in-out;
		transition: padding-top 0.15s ease-in-out;
	}
	/*.gwk_section-bg-image.gwk_section-top > .container {*/
	.gwk_section-top > .container {
		margin-top: 30px;
		/*-webkit-transition: margin-top 0.15s ease-in-out;
		transition: margin-top 0.15s ease-in-out;*/
	}
	.gwk_section-bg-image.gwk_section-top > .container {
		margin-top: 50px;
	}
	/*.gwk_sticky-subnav + .gwk_section-bg-image.gwk_section-top > .container {
		margin-top: 50px;
	}*/
}


.gwk_section-bg-image > div {
	position: relative;
	z-index: 1;
}
.gwk_section-bg-image .gwk_section-heading,
.gwk_section-bg-image .gwk_section-subheading {
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.gwk_section-heading {
	font-size: 3.5rem;
	padding: 0 0 30px;
	margin: 0;
}
@media (max-width: 33.9em) {
	.gwk_section-heading {
		font-size: 2.5rem;
	}
}
.gwk_section-lead {
	/*padding-bottom: 60px;*/
	margin-bottom: 0;
}
.gwk_section-image {
	background-size: cover;
	background-position: center;
	width: 100%;
	border: 10px solid #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.gwk_section-image:after {
	content: '';
	display: block;
	padding-bottom: 100%;
}
.gwk_section-content {
	padding: 60px 30px 0;
}
@media (max-width:61.9em) {
	.gwk_section-content {
		padding: 0 15px;
	}
}
@media (max-width:33.9em) {
	.gwk_section-content {
		padding: 30px 15px;
	}	
}
.gwk_section-content-no-top-offset {
	padding-top: 0;
}
.gwk_section-content-preheading {
	border-bottom: 2px solid rgba(193, 40, 41, 0.65);
}
.gwk_section-content-preheading span {
    color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
    background-color: rgba(193, 40, 41, 0.65);
    display: inline-block;
    padding: 5px 15px 3px;
}
.gwk_section-content-preheading span .fa {
	margin-right: 10px;
}
.gwk_section-content-heading-pre {
	color: #d15e5f;
	font: 400 13px/1.5 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 15px;
}
.gwk_section-content-heading {
	padding: 2rem 0;
	margin: 0;
}
/*.gwk_section-content-no-top-offset .gwk_section-content-heading {
	padding-top: 0;
}*/
@media (max-width: 33.9em) {
	.gwk_section-content-heading {
		font-size: 2rem;
	}
}
.gwk_section-content-heading-divider {
	position: relative;
}
.gwk_section-content-heading-divider:before {
	content: '';
	position: absolute;
	top: 48%;
	left: 35%;
	width: 30%;
	border-top: 6px double #e09394;
}
@media (max-width: 33.9em) {
	.gwk_section-content-heading-divider:before {
		left: 20%;
		width: 60%;
	}
}
.gwk_section-content-heading-divider .fa {
	color: #fff;
	font-size: 26px;
	line-height: 50px;
	text-align: center;
	background-color: #d15e5f;
	position: relative;
	display: block;
	margin: 0 auto 2rem;
	width: 70px;
	height: 70px;
	border: 10px solid #fff;
	border-radius: 50%;
}
.gwk_section-content-link {
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #c12829;
	margin-top: 1rem;
	border: none;
}
.gwk_section-content-link:focus,
.gwk_section-content-link:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ec2526;
}
.gwk_section-content-link .fa {
	margin-left: 5px;
}

.gwk_section-content-bg-image {
	background-color: #fff;
	padding: 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.gwk_section-hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	height: 350px;
}
@media (max-width: 33.9em) {
	.gwk_section-hero {
		height: 300px;
	}
}
.gwk_section-hero-title {
	color: #fff;
    font: 700 62px/1.5 'Montserrat', 'Lato', sans-serif;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
	text-transform: uppercase;
	padding-bottom: 30px;
	letter-spacing: 15px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    margin: 0 5%;
    width: 90%;
}
@media (max-width: 61.9em) {
	.gwk_section-hero-title {
		font-size: 50px;
	}
}
@media (max-width: 47.9em) {
	.gwk_section-hero-title {
		letter-spacing: 5px;
	}
}
@media (max-width: 33.9em) {
	.gwk_section-hero-title {
		font-size: 30px;
		line-height: 1.1;
	}
}
.gwk_section-content-banner-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	margin-bottom: 30px;
	min-height: 420px;
	border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.gwk_section-content-banner-image:before {
	content: '';
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.gwk_section-content-banner-image-text {
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 50%;
	z-index: 2;
	padding: 15px;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.gwk_section-content-banner-image-text-title {
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 20px;
	padding-bottom: 30px;
}
.gwk_section-callout {
	color: #fff;
	position: relative;
	background-color: #373494;
	overflow: hidden;
}
.gwk_section-callout .container {
	position: relative;
}
.gwk_section-callout .container:before {
	color: rgba(255, 255, 255, 0.05);
	font-family: 'FontAwesome';
	font-size: 500px;
	content: '\f059';
	position: absolute;
	top: -320px;
	right: 0;
	width: 500px;
	height: 500px;
}
.gwk_section-callout .gwk_btn {
	margin-bottom: 0;
}
@media (max-width: 33.9em) {
	.gwk_section-callout .gwk_btn {
		margin-top: 10px;
	}
}
.gwk_section-callout-title {
	margin: 0;
}
.gwk_section-callout-blurb {
	color: rgba(255, 255, 255, 0.8);
	margin: 10px 0 0 0;
}



.gwk_table-title {
	padding: 0 0 60px;
}
.gwk_list-icons {
	/*padding: 0 0 30px;*/
	margin: 0;
}
.gwk_list-icons li {
	font-size: 20px;
	font-weight: 400;
	/*padding: 10px 0;*/
	height: 220px;
}
.gwk_list-icons li .fa {
	color: #c0c0c0;
	font-size: 50px;
	line-height: 100px;
	background-color: #f0f0f0;
	display: block;
	margin: 0 auto 15px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.gwk_list-icons li:hover .fa {
	color: #fff;
	font-size: 60px;
	background-color: #d15e5f;
}
.gwk_list-small li {
	padding: 5px 0;
	margin-bottom: 0;
}

.gwk_list-logos li {
	padding-bottom: 30px;
}
.gwk_list-logos li img {
	width: 100%;
}



.gwk_contact-icon.fa {
    color: #c0c0c0;
    font-size: 40px;
    line-height: 100px;
    background-color: #f0f0f0;
    display: block;
    margin: 15px auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.gwk_reservation-button {
	color: #fff;
	font: 400 26px/1.5 'Lato', sans-serif;
	text-decoration: none;
    text-transform: uppercase;
	/*background-color: rgba(193, 40, 41, 0.7);*/
	background-color: #373494;
    display: inline-block;
    /*padding: 20px;*/
    padding: 0.5em 1em;
    margin-top: 60px;
    border-radius: 0.25rem;
}
@media (max-width: 47.9em) {
	.gwk_reservation-button {
		font-size: 18px;
	}
}
.gwk_reservation-button:active,
.gwk_reservation-button:focus,
.gwk_reservation-button:hover {
	color: #fff;
	text-decoration: none;
}
.gwk_reservation-button:hover {
	/*background-color: rgba(193, 40, 41, 0.95);*/
	background-color: #110d7c;
}
.gwk_reservation-button .fa {
	margin-right: 15px;
}
#reservation #message.updated,
#job-application #message.updated {
	color: #fff;
	text-align: center;
    background-color: #d15e5f;
    padding: 30px;
    margin-bottom: 30px;
}
#reservation #message.updated p,
#job-application #message.updated p {
	margin-bottom: 0;
}
#reservation #message.updated .fa-times,
#job-application #message.updated .fa-times {
	color: rgba(255, 255, 255, 0.5);
	line-height: 40px;
	position: absolute;
    top: 0;
    right: 15px;
    width: 40px;
    height: 40px;
}
#reservation #message.updated .fa-times:focus,
#reservation #message.updated .fa-times:hover,
#job-application #message.updated .fa-times:focus,
#job-application #message.updated .fa-times:hover {
	color: #fff;
}


/* sticky sub-navigation */
.gwk_subnav {
	position: relative;
	z-index: 50;
	padding: 15px 0;
	margin: 45px 0;
	width: 100%;
	-webkit-transition: background-color 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out;
}
@media (max-width: 47.9em) {
	.gwk_subnav {
		/*padding: 10px 0;
		margin: 0;
		height: 50px;*/
		padding: 0;
		margin: 0;
	}
}
/*.gwk_subnav-home {
	top: 715px;
}*/
/*@media (max-width: 33.9em) {
	.gwk_subnav-home {
		top: 495px;
	}
}*/
.gwk_sticky-subnav {
	position: fixed;
	top: 100px;
	margin: 0;
	width: 100%;
}
@media (max-width: 33.9em) {
	.gwk_sticky-subnav {
		top: 50px;
	}
}
.gwk_subnav.gwk_sticky-subnav {
	/*background-color: rgba(193, 40, 41, 0.95);*/
	background-color: rgb(193, 40, 41);
	/*padding-top: 15px;*/
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
/*@media (max-width: 33.9em) {*/
@media (max-width: 47.9em) {
	.gwk_subnav.gwk_sticky-subnav {
		white-space: nowrap;
		display: inline-block;
		padding: 10px;
		height: 50px;
	}
}
/*.gwk_subnav.gwk_sticky-subnav + .gwk_section-top {
	padding-top: 60px;
}*/
.gwk_subnav ul {
	margin: 0;
}
.gwk_subnav li {
	color: #a0a0a0;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	padding: 5px;
	margin: 5px 0;
}
.gwk_subnav .fa {
	margin-left: 10px;
}
.gwk_subnav a {
	color: #505050;
	font-weight: 400;
	text-decoration: none;
	padding: 8px 15px;
}
.gwk_subnav a:focus,
.gwk_subnav a:hover {
	color: rgba(193, 40, 41, 0.95);
	text-decoration: none;
}
.gwk_subnav.gwk_sticky-subnav li {
	color: rgba(255, 255, 255, 0.5);
}
.gwk_subnav.gwk_sticky-subnav a {
	color: rgba(255, 255, 255, 0.75);
}
.gwk_subnav.gwk_sticky-subnav a:focus {
	color: rgba(255, 255, 255, 0.85);
}
.gwk_subnav.gwk_sticky-subnav a:hover,
.gwk_subnav.gwk_sticky-subnav a.active {
	color: #fff;
}
.gwk_subnav.gwk_sticky-subnav a.active {
	background-color: rgba(255, 255, 255, 0.25);
	border-radius: 0.3rem;
}
.gwk_subnav .gwk_subnav-button,
.gwk_subnav-bottom .gwk_subnav-button {
	color: #fff !important;
	background-color: #373494;
	padding: 8px 25px;
	border-radius: 0.3rem;
}
.gwk_subnav .gwk_subnav-button:focus,
.gwk_subnav .gwk_subnav-button:hover,
.gwk_subnav-bottom .gwk_subnav-button:focus,
.gwk_subnav-bottom .gwk_subnav-button:hover {
	background-color: #110d7c;
}
.gwk_subnav .gwk_subnav-button .fa,
.gwk_subnav-bottom .gwk_subnav-button .fa {
	margin: 0 10px 0 0;
}
.gwk_subnav-bottom {
	background-color: rgba(193, 40, 41, 0.95);
	position: fixed;
	bottom: 0;
	z-index: 50;
	padding: 10px;
	width: 100%;
	-webkit-transition: background-color 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out;
}
.gwk_subnav-bottom .gwk_subnav-button {
	color: #fff;
	font: 400 13px/30px 'Lato', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 15px;
}

.gwk_subnav-mobile {
	position: relative;
}
@media (max-width: 47.9em) {
	.gwk_subnav-mobile {
		display: none;
	}
	.gwk_sticky-subnav .gwk_subnav-mobile {
		display: block;
	}
}
.gwk_subnav-mobile-section-title {
	color: rgba(255, 255, 255, 0.9);
	font: 400 16px/30px 'Lato', sans-serif;
    text-transform: uppercase;
}
.gwk_subnav-mobile-nav {
	color: rgba(255, 255, 255, 0.7);
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	position: absolute;
	top: 0;
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.gwk_subnav-mobile-nav:hover {
	color: #fff;
}
.gwk_subnav-mobile-nav.disabled,
.gwk_subnav-mobile-nav.disabled:hover {
	color: rgba(255, 255, 255, 0.3);
}
.gwk_subnav-mobile-nav-prev {
	left: 10px;
}
.gwk_subnav-mobile-nav-next {
	right: 10px;
}
.gwk_subnav-mobile-nav .fa {
	margin: 0;
}



/* home page carousel */
.gwk_home-carousel-item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 700px;
}
@media (max-width: 33.9em) {
	.gwk_home-carousel-item {
		height: 480px;
	}
}
.gwk_home-carousel-control {
	font-size: 80px;
	line-height: 700px;
	text-align: center;
	background-image: none !important;
}
@media (max-width: 33.9em) {
	.gwk_home-carousel-control {
		font-size: 40px;
		line-height: 480px;
	}
	.gwk_home-carousel-indicators {
		display: none;
	}
}
.gwk_home-carousel-caption-container {
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC44NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.95) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.95) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.95) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d9000000',GradientType=0 );
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60%;
}
.gwk_home-carousel-caption {
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
	right: 10%;
	bottom: 0;
	left: 10%;
	padding: 30px;
}
@media (max-width: 33.9em) {
	.gwk_home-carousel-caption {
		padding: 15px;
	}
}
.gwk_home-carousel-item-caption-title {
	margin-bottom: 20px;
}
@media (max-width: 33.9em) {
	.gwk_home-carousel-item-caption-title {
		font-size: 2rem;
	}
	.gwk_home-carousel-item-caption-blurb {
		display: none;
	}
}
/*.gwk_home-carousel-item-caption-button {*/
.gwk_btn {
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-decoration: none;
	background-color: #c12829;
	margin: 15px 0 30px;
	border: none;
}
@media (max-width: 33.9em) {
	/*.gwk_home-carousel-item-caption-button {*/
	.gwk_btn {
		font-size: 16px;
		white-space: initial;
		margin: 0;
	}
}
/*.gwk_home-carousel-item-caption-button:focus,
.gwk_home-carousel-item-caption-button:hover {*/
.gwk_btn:focus,
.gwk_btn:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ec2526;
}





.gwk_home-featurette {
	/*background-color: #fff;*/
	/*padding: 15px;*/
	float: left;
	margin: 0 1%;
	width: 31.333333%;
	/*box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
	-webkit-transition: box-shadow 0.15s ease-in-out;
	transition: box-shadow 0.15s ease-in-out;*/



	/* NOTE: These changes are because "Pet Travel" was removed as a service. */
	/*margin-left: 25%;
	width: 50%;*/
	
	
	
}
@media (max-width:61.9em) {
	.gwk_home-featurette {
		padding: 15px;
		margin-left: 0;
		width: 100%;
	}
}
.gwk_home-featurette:focus,
.gwk_home-featurette:hover {
	/*cursor: pointer;
	outline: none;*/
	/*box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);*/
}
.gwk_home-featurette-heading {
	color: #373a3c;
	margin-bottom: 30px;
}
.gwk_home-featurette-heading-divider {
    margin: 30px auto;
    height: 0;
    /*border-top: 2px solid #e0e0e0;*/
    border-top: 2px solid #c12829;
}
/*.gwk_home-featurette:focus .gwk_home-featurette-heading-divider,
.gwk_home-featurette:hover .gwk_home-featurette-heading-divider {
	border-top-color: #c12829;
}*/
.gwk_home-featurette-heading-divider .fa {
    color: #fff;
    line-height: 30px;
    text-align: center;
    /*background-color: #e0e0e0;*/
    background-color: #c12829;
    display: block;
    margin: -30px auto 0;
    width: 60px;
    height: 60px;
    border: 15px solid #fff;
    border-radius: 50%;
}
/*.gwk_home-featurette:focus .gwk_home-featurette-heading-divider .fa,
.gwk_home-featurette:hover .gwk_home-featurette-heading-divider .fa {
	background-color: #c12829;
}*/
.gwk_home-featurette-subheading {
	font-family: 'Merriweather', serif;
	font-weight: 700;
	font-size: 20px;
	padding: 20px 0 30px;
	margin: 0;
}
.gwk_home-featurette-blurb {
	color: #444;
	margin-bottom: 30px;
}
.gwk_home-featurette-link {
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #c12829;
	display: block;
	margin: 0 auto;
	border: none;
}
@media (max-width: 61.9em) and (min-width: 48em) {
	.gwk_home-featurette-link {
		width: 50%;
	}
}
@media (max-width: 47.9em) and (min-width: 34em) {
	.gwk_home-featurette-link {
		width: 70%;
	}
}
.gwk_home-featurette-link:focus,
.gwk_home-featurette-link:hover {
	color: #fff;
	background-color: #ec2526;
	text-decoration: none;
}
.gwk_home-featurette-link .fa {
	margin-left: 5px;
}
/*.gwk_home-featurette-link-container {
	text-decoration: none;
}
.gwk_home-featurette-link-container:focus,
.gwk_home-featurette-link-container:hover {
	text-decoration: none;
}*/


/*  */
@media (max-width:61.9em) {
	.gwk_map-container {
		padding: 30px 0 0 0;
	}
}
.gwk_map {
	background-color: #f0f0f0;
	/*width: 100%;*/
	height: 500px;
	border: 10px solid #fff;
	/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);*/
}
/*.gwk_map-non-home-container .gwk_map {
	height: 300px;
	box-shadow: none;
}*/
.gwk_map-zoom {
	background-color: rgba(211, 104, 104, 0.9);
	background-repeat: no-repeat;
	background-size: 32px 64px;
	background-image: url("images/google-maps-icon-controller.svg");
	margin-left: 10px;
	cursor: pointer;
	width: 32px;
	height: 32px;
}
.gwk_map-zoom:hover {
	background-color: #d36868;
}
#cd-zoom-in {
	background-position: 50% 0;
	margin-top: 10px;
	margin-bottom: 1px;
}
#cd-zoom-out {
	background-position: 50% -32px;
}
.gwk_map-address {
	color: #fff;
	background-color: rgba(211, 104, 104, 0.9);
	position: absolute;
	bottom: 40px;
	left: 35px;
	z-index: 1;
	padding: 15px;
	margin: 0;
	width: calc(100% - 70px);
}


/*  */
.gwk_offcanvas-sidebar-nav {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	padding: 5px 0;
}
.gwk_offcanvas-sidebar-nav a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.25rem;
	text-decoration: none;
	display: block;
	padding: 5px 15px;
	border-radius: 0.3rem;
}
.gwk_offcanvas-sidebar-nav a:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}


/*  */
.gwk_faq-article {
	display: none;
}
.gwk_faq-article:first-of-type {
	display: block;
}
.gwk_faq-questions {
	font-family: 'Lato', sans-serif;
}
.gwk_faq-questions li {
	padding-bottom: 5px;
}
.gwk_faq-questions a {
	color: #373a3c;
	text-decoration: none;
}
.gwk_faq-questions a:hover {
	color: rgba(193, 40, 41, 0.7);
}
.gwk_faq-questions .active,
.gwk_faq-questions .active a {
	color: #c12829;
	font-weight: 700;
}


/* pricing table */
.gwk_pricing-table {
	margin-top: 60px;
	background-color: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	border-radius: 0.3rem;
}
.gwk_pricing-table-title {
	color: #fff;
	font-size: 36px;
	padding: 15px;
	margin: -45px 0 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
}
.gwk_pricing-table-title span {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 15px;
	display: block;
	margin: 5px 0 0 15px;
}
.gwk_pricing-table-blurb {
	font-size: 0.95rem;
	margin: 0;
}
.gwk_pricing-table-list {
	padding: 25px 30px;
	margin: 0;
}
.gwk_pricing-table-list li {
	font-size: 0.85rem;
	padding: 8px 0;
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.gwk_pricing-table-list li:first-of-type {
	border-top: none;
}
/*.gwk_pricing-table-list li:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.5);
}*/
.gwk_pricing-table-highlight {
	/*background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );*/
	padding: 30px;
}
/*.gwk_pricing-table-highlight.ultimate {
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(100,77,159,0.25) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(100,77,159,0.25) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(100,77,159,0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#40644d9f',GradientType=0 );
}
.gwk_pricing-table-highlight.renew {
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(146,184,70,0.25) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(146,184,70,0.25) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(146,184,70,0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#4092b846',GradientType=0 );
}
.gwk_pricing-table-highlight.comfort {
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(216,179,78,0.25) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(216,179,78,0.25) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(216,179,78,0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#40d8b34e',GradientType=0 );
}*/
.gwk_pricing-table-highlight-list {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	padding: 5px 0;
	margin: 0;
}
.gwk_pricing-table-highlight-list li {
	font-size: 1.25rem;
	line-height: 1.1;
	padding: 10px 0;
}
.gwk_pricing-table-featuring {
	font-size: 0.8rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 10px;
	padding: 30px 0 15px;
	margin: 0 0 0 10px;
}
.gwk_pricing-table-includes {
    color: #373a3c;
    font-size: 0.9rem;
    text-align: center;
	text-transform: uppercase;
    padding: 30px 30px 0;
    margin: 0;
}
.gwk_pricing-table-price-container {
	height: 30px;
}
.gwk_pricing-table-price-container div {
	position: absolute;
}
.gwk_pricing-table-price {
	font: 300 30px/52px 'Lato', sans-serif;
	text-align: center;
	background-color: #fff;
    top: -15px;
    left: 50%;
    margin-left: -30px;
	width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.gwk_pricing-table-price-pre {
	color: #fff;
	font-size: 10px;
	line-height: 20px;
	position: absolute;
    top: 0;
    left: -15px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25);
}
.gwk_pricing-table-price-post {
	color: rgba(255, 255, 255, 0.5);
	font-size: 10px;
	line-height: 52px;
	text-align: left;
	text-transform: uppercase;
	position: absolute;
    bottom: 0;
    left: 64px;
    width: 100px;
}
.gwk_pricing-table-footnote {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	padding-top: 60px;
}


/* news & events section */
.gwk_news-events-featured-image {
	float: left;
	margin: 0 2rem 2rem 0;
	width: 300px;
	border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.gwk_news-events-recent-title {
	color: rgba(193, 40, 41, 0.65);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    padding: 5px 15px 5px 0;
    margin: 0 auto 30px;
    border-bottom: 2px solid rgba(193, 40, 41, 0.65);
}
.gwk_news-events-recent-title > .fa {
	margin-right: 10px;
}
.gwk_news-events-recent-list a {
	color: #373a3c;
	text-decoration: none;
}
.gwk_news-events-recent-list a:focus,
.gwk_news-events-recent-list a:hover {
	color: rgba(193, 40, 41, 0.95);
}
.gwk_news-events-recent-list-title {
	font-size: 1.5rem;
}
.gwk_news-events-recent-list-date {
	font-family: 'Lato', sans-serif;
	font-size: 0.75rem;
	text-transform: uppercase;
}
.gwk_news-events-recent-list-date > .fa {
	margin-right: 10px;
}
.gwk_news-events-excerpt {
	margin-bottom: 60px;
}
.gwk_news-events-excerpt:last-of-type {
	margin-bottom: 0;
}
.gwk_news-events-excerpt-title a {
	color: rgba(193, 40, 41, 0.85);
	text-decoration: none;
	border-bottom: 2px solid rgba(193, 40, 41, 0.25);
}
.gwk_news-events-excerpt-title a:focus,
.gwk_news-events-excerpt-title a:hover {
	border-bottom: 2px solid rgba(193, 40, 41, 0.65);
}
.gwk_news-events-pagination .wp-pagenavi {
	font-family: 'Lato', sans-serif;
    text-align: center;
    text-transform: uppercase;
    padding-top: 60px;
}
.gwk_news-events-pagination .wp-pagenavi a,
.gwk_news-events-pagination .wp-pagenavi span {
	border: none;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.gwk_news-events-pagination .wp-pagenavi a:focus,
.gwk_news-events-pagination .wp-pagenavi a:hover {
	color: #fff;
	text-decoration: none;
	background-color: rgba(193, 40, 41, 0.65);
}


/* footer styles */
.gwk_footer {
	color: #fff;
	background-color: #333;
    padding: 60px 0 115px;
}
@media (max-width: 47.9em) {
    .gwk_footer {
        padding-bottom: 45px;
    }
}
.gwk_footer-heading {
	font-size: 1.5rem;
	padding-bottom: 15px;
}
.gwk_footer-heading > a {
	color: white;
	text-decoration: none;
	transition: all 0.15s ease-in-out;
}
.gwk_footer-heading > a:focus,
.gwk_footer-heading > a:hover {
	color: #c12829;
}
.gwk_footer-heading > a > .fa {
	font-size: 1rem;
	margin-left: 10px;
}
@media (max-width: 47.9em) {
	.gwk_footer div[class^='col-']:first-of-type .gwk_footer-heading {
		padding-top: 0;
	}
	.gwk_footer-heading {
		padding-top: 30px;
	}
}
.gwk_footer p {
	color: rgba(255, 255, 255, 0.8);
}
.gwk_footer-list {
	padding: 0;
	margin: 0;
}
.gwk_footer-list li {
	color: rgba(255, 255, 255, 0.8);
	position: relative;
	padding: 5px 0;
}
.gwk_footer-list-icons li {
	padding-left: 30px;
}
.gwk_footer-list-icons .fa,
.gwk_footer-list-icons img {
	color: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 9px;
	left: 0;
	width: 16px;
	height: 16px;
}
.gwk_footer-list a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.gwk_footer-list a:focus,
.gwk_footer-list a:hover,
.gwk_footer-list a:focus .fa,
.gwk_footer-list a:hover .fa,
.gwk_footer-list a:focus li,
.gwk_footer-list a:hover li,
.gwk_footer-list a:focus .gwk_footer-list-news-events-date,
.gwk_footer-list a:hover .gwk_footer-list-news-events-date {
	color: #fff;
}
.gwk_footer-list-news-events-date {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}
.gwk_footer-list-news-events .fa {
	font-size: 13px;
	margin-right: 10px;
}
.gwk_footer-external {
	margin-top: 30px;
}
.gwk_footer-external > li > a,
.gwk_footer-external > li > a > img {
	display: block;
	border: 0;
	width: auto;
	max-width: 100%;
	height: 50px;
}

.gwk_cta-button-wrapper {
    text-align: center;
    margin: 30px 0 60px;
}
.gwk_cta-button {
	color: #fff;
	font: 400 26px/1.5 'Lato', sans-serif;
	text-decoration: none;
	background-color: #373494;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out;
}
@media (max-width: 47.9em) {
    .gwk_cta-button {
        font-size: 18px;
    }
}
.gwk_cta-button:active,
.gwk_cta-button:focus,
.gwk_cta-button:hover {
    color: #fff;
    background-color: #110d7c;
    text-decoration: none;
}
.gwk_cta-button .fa {
    margin-right: 15px;
}

/**
 * 404 page styles
 */
.error404 main:before {
    opacity: 0.3;
}
.error404 .gwk_header-nav .nav-link:not([title="Shop Now"]),
.error404 .gwk_header-nav-mobile {
    color: #333;
    text-shadow: none;
}
.error404 .gwk_sticky-header .gwk_header-nav .nav-link:not([title="Shop Now"]):hover,
.error404 .gwk_sticky-header .gwk_header-nav .nav-link:not([title="Shop Now"]):focus {
    color: white;
}
.error404 .gwk_navbar-brand {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.gwk_404 {
    position: relative;
    padding-top: 200px;
    min-height: 720px;
    height: 100%;
}
.gwk_404:before {
    content: '';
    background: white url('images/404-bg.jpg') center bottom no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
}
.gwk_404 h1 {
    font: 700 80px/1.1 'Montserrat', 'Lato', sans-serif;
    text-shadow: 0 1px 0 white;
    margin: 0 0 20px;
}
.gwk_404 p {
    font-size: 24px;
    text-shadow: 0 1px 0 white;
    margin-bottom: 40px;
}
.gwk_404 .gwk_btn {
    font-size: 24px;
    margin: 0;
}
@media (max-width: 61.9em) {
    .gwk_404 {
        padding-top: 160px;
    }
}
@media (max-width: 47.9em) {
    .gwk_404 h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }
    .gwk_404 p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .gwk_404 .gwk_btn {
        font-size: 18px;
    }
}
@media (max-width: 47.9em) and (min-width: 34em) {
    .gwk_404 .col-xs-12 {
        padding: 0;
    }
}
@media (max-width: 33.9em) {
    .gwk_404 {
        padding-top: 140px;
    }
}

#google-reviews {
    color: #373a3c;
    font-family: 'Lato', sans-serif;
    background-color: white;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 47.9em) {
    #google-reviews {
        display: none;
    }
}
#google-reviews .title {
    font-size: 24px;
}
#google-reviews .title img {
    margin-right: 5px;
    width: 90px;
}
#google-reviews .number {
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
}
#google-reviews .star {
    margin-top: -5px;
    width: 20px;
}
#google-reviews .star:not(:first-of-type) {
    margin-left: -2.5px;
}
#google-reviews a {
    font-size: 14px;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

#job-application .acf-field-group > .acf-label {
	font-size: 24px;
}
#job-application .acf-field-68e5592d1c6d6 {
	float: left;
	width: 100%;
}
#job-application #acf-form {
	margin: -16px;
	margin-bottom: 0;
}

.single-job-application .gwk_section-hero {
	background-color: #373494;
}
.single-job-application h2 {
	font-size: 50px;
	text-align: center;
}
.single-job-application h2 .date {
	font-size: 24px;
	margin: 15px auto 0;
}
.single-job-application h3 {
	font-size: 24px;
	text-align: center;
	margin: 60px auto 30px;
}

@media print {
	.single-job-application {
		font-size: 75%;
		word-wrap: break-word;
	}
	.single-job-application .gwk_header,
	.single-job-application .offcanvas-sidebar,
	.single-job-application .gwk_footer {
		display: none !important;
	}
	.single-job-application .gwk_section-hero {
		opacity: 0 !important;
		height: 100px !important;
	}
	.single-job-application .col-lg-10.col-lg-offset-1 {
		margin: 0 !important;
		width: 100% !important;
	}
	.single-job-application th {
		width: 40% !important;
	}
	.single-job-application td {
		width: 60% !important;
	}
}
