/*
    This CSS File will display on all pages and posts
*/

/* Table of Contents
  - CSS Variables
  - Typography
  - Buttons
  - Site Header
  - Pagination
  - Form
  - 404 Page
  - Sidebar
  - Footer Widgets
  - Site Footer
  - JSMT Shortcode
  - Fadeup Effect
  - Announcement
  - Search
  - Landing Page
  - Accordions
  - Video
  - Coming Soon Page
  - Media Queries
*/

/* CSS Variables
---------------------------------------------------------------------------- */
:root {
	--boxShadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.15), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
	--headingFont: "Raleway", sans-serif;
	--bodyFont: "Merriweather", serif;
	--iconFont: "font awesome 6 pro";
	--accentGold: #e7a537;
}

/* Typography
---------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: var(--bodyFont);
	line-height: 1.8;
	font-size: 1.6rem;
	color: var(--mainColor);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--headingFont);
}

.site-container ul li li {
	list-style: circle;
}

.site-container ul li li li {
	list-style: square;
}

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

.align-center {
	text-align: center;
}

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

p {
	margin: 0 0 1.6rem 0;
}

a {
	text-decoration: none;
	outline: 0;
	color: var(--mainColor);
}

a:hover {
	color: var(--secondColor);
}

.entry-title {
	font-weight: 700;
	margin-bottom: 2rem;
}

/* Buttons
---------------------------------------------------------------------------- */
a.button {
	border-radius: 0.25rem;
	padding: 1.5rem 3rem;
	line-height: 1;
	font-size: 1.6rem;
	font-weight: 800;
	background-color: var(--secondColor);
	transition: .5s ease color, .5s ease background-color, .5s ease outline, .5s ease border;
}

a.button:hover {
	background-color: var(--mainColor);
}

a.button.secondary-button {
	background-color: transparent;
	color: var(--secondColor);
	outline: .2rem solid var(--secondColor);
	outline-offset: -.2rem;
}

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

a.button.underlined-button {
	background-color: transparent;
	color: var(--secondColor);
	padding: 0 0 .4rem 0;
	border-bottom: .2rem solid var(--secondColor);
	border-radius: 0;
}

a.button.underlined-button:hover {
	color: var(--mainColor);
	border-color: var(--mainColor);
}

/* Site Header
---------------------------------------------------------------------------- */
.js .nav-primary,
.nav-primary {
	padding: 0;
}

.nav-primary .genesis-nav-menu a {
	outline: 0;
	font-size: 2rem;
	font-weight: 700;
}

.site-header {
	padding: 0;
}

.site-header .widget-area .widget {
	margin: 0;
}

.site-header .title-area .site-title {
	font-family: var(--headingFont);
	font-size: 2.4rem;
}

.menu-item-gtranslate select {
	border-color: white;
	outline: none;
	color: var(--mainColor);
	padding: 0.5rem;
	font-weight: 700;
	transition: color 0.25s ease;
	cursor: pointer;
	text-align: center;
}

.menu-item-gtranslate select:hover {
	color: var(--secondColor);
}

.menu-item-gtranslate select option:first-of-type {
	display: none;
	font-size: 0;
	width: 0;
	position: absolute;
	top: -999rem;
	left: -999rem;
}

.menu-item-gtranslate select:focus,
.menu-item-gtranslate select:active {
	border-color: white;
}

.has-icon-logo .site-header .title-area {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.has-icon-logo .site-header .title-area a.custom-logo-link {
	flex: 1;
}

.has-icon-logo .site-header .title-area a.header-link {
	flex: 3;
	margin-left: 1rem;
}

.has-icon-logo .site-header .title-area a.header-link p.site-description {
	line-height: 1;
	margin: 0;
}

.site-header .header-phone {
	text-align: center;
	font-weight: 700;
	font-size: 2.6rem;
}

.site-header .header-phone li {
	list-style-type: none;
}

.site-header .widget-area .widget ul>li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	line-height: 1;
}

.site-header .widget-area .widget ul>li.menu-button a {
	background-color: var(--secondColor);
	color: white;
	padding: 1.5rem 2rem;
	font-weight: 700;
	border-radius: 0.25rem;
	transition: background-color 0.5s ease;
}

.site-header .widget-area .widget ul>li.menu-button a:hover {
	background-color: var(--mainColor);
}

.nav-primary {
	float: none;
	text-align: center;
}

.site-container .menu-toggle {
	padding: 2.5rem 1.5rem;
	position: relative;
	z-index: 1000;
	text-align: right;
	margin: 0;
	margin-right: -1.5rem;
}

.site-container .menu-toggle::before {
	font-family: var(--iconFont);
	font-weight: 900;
	content: "\f0c9";
	font-size: 2.4rem;
	width: 2.4rem;
	height: 2.4rem;
	--fa-secondary-opacity: 0.5;
	margin: 0;
}

.site-container .menu-toggle.activated::before {
	content: '\f00d';
}

.site-container .sub-menu-toggle {
	float: right;
	padding: 1.5rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
	line-height: 1;
	margin-right: -1.5rem;
}

.site-container .sub-menu-toggle::before {
	content: "\2b";
	font-family: var(--iconFont);
	font-size: 2rem;
	width: 2rem;
	height: 2rem;
	font-weight: 900;
}

.site-container .sub-menu-toggle.activated::before {
	content: '\f068';
}

.site-container .menu-toggle:focus,
.site-container .menu-toggle:hover,
.site-container .menu-toggle:visited,
.site-container .sub-menu-toggle:focus,
.site-container .sub-menu-toggle:hover,
.site-container .sub-menu-toggle:visited {
	outline: 0;
}

/* Pagination
---------------------------------------------------------------------------- */
.pagination {
	flex-basis: 100%;
	max-width: 100%;
	clear: both;
	margin: 6rem 0 0 0;
	text-align: center;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	padding: 0.8rem 1.2rem;
	text-decoration: none;
}

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

/* Form
---------------------------------------------------------------------------- */
input:focus,
select:focus,
textarea:focus {
	border: .1rem solid var(--accentGold);
}

.site-container .gform_wrapper.gravity-theme .gfield input,
.site-container .gform_wrapper.gravity-theme .gfield select,
.site-container .gform_wrapper.gravity-theme .gfield textarea {
	padding: 1rem;
	font-size: 1.5rem;
	margin: 0;
	line-height: 1;
	border-radius: .25rem;
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	line-height: 1;
}

.site-container .gform_wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.site-container .gform_wrapper select {
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 2rem) calc(1em + .2rem), calc(100% - 1.5rem) calc(1em + .2rem), calc(100% - 2.5em) .5em;
	background-size: .5rem .5rem, .5rem .5rem, .1rem 1.5em;
	background-repeat: no-repeat;
}

.site-container .gform_wrapper select:focus {
	background-image: linear-gradient(45deg, var(--mainColor) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--mainColor) 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 1.5rem) 1em, calc(100% - 2rem) 1em, calc(100% - 2.5em) .5em;
	background-size: .5rem .5rem, .5rem .5rem, .5rem 1.5em;
	background-repeat: no-repeat;
	outline: 0;
}

.site-container .gform_wrapper.gravity-theme .gfield_label {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.site-container .gform_wrapper.gravity-theme .gform_footer {
	padding: 0;
	margin: 1rem 0 0 0;
}

.site-container .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
	border-radius: 0.25rem;
}

.site-container .gform_wrapper.gravity-theme .gfield_required {
	color: #ccc;
	font-style: normal;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--headingFont);
	text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
	font-size: 1.2rem;
	font-family: var(--headingFont);
	line-height: 1;
	padding: 1rem;
	border-radius: 0.25rem;
}

/* 404 Page
---------------------------------------------------------------------------- */
body.error404 .site-inner .page-content {
	padding: 8rem 0;
	text-align: center;
}

body.error404 .site-inner h1.page-title {
	font-size: 10rem;
	font-weight: 700;
	line-height: 1;
	font-family: var(--bodyFont);
	margin-bottom: 10px;
}

body.error404 .site-inner .page-content h3 {
	font-size: 4rem;
}

body.error404 .site-inner .page-content p {
	font-size: 2.2rem;
}

/* Sidebar
---------------------------------------------------------------------------- */
.sidebar .widget {
	margin-bottom: 4rem;
	border-radius: 0.5rem;
	background-color: var(--mainColor);
	padding: 0 5%;
	color: white;
}

.sidebar .widget-title {
	font-size: 2.6rem;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	padding-bottom: 2rem;
	font-weight: 700;
}

.sidebar .widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 2.5rem);
	width: 5rem;
	height: 0.3rem;
	background-color: var(--secondColor);
}

.sidebar .widget.blog-posts ul>li::before {
	content: "\f105";
	font-family: var(--iconFont);
	color: var(--mainColor);
	font-size: 1.5rem;
	font-weight: 700;
	transition: .5s ease all;
	margin-right: .7rem;
	display: inline-block;
	vertical-align: text-bottom;
}

.sidebar .widget ul>li {
	line-height: 1.2;
	list-style-type: none;
}

.sidebar .widget ul>li:not(:last-of-type) {
	margin-bottom: 1.5rem;
}

.sidebar .widget ul>li a {
	color: #fff;
}

.sidebar .widget ul>li a:hover {
	color: var(--secondColor);
}

.site-container .sidebar .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
	display: block;
	width: 100%;
	background-color: var(--secondColor);
	margin: 0;
}

.site-container .sidebar .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover {
	background-color: white;
	color: var(--mainColor);
}

.blog-sidebar .widget {
	background-color: var(--mainColor);
	color: white;
}

.blog-sidebar .widget .jsmt-shortcode {
	text-align: center;
	margin-bottom: 2rem;
}

.blog-sidebar .widget .jsmt-shortcode a {
	color: white;
	font-weight: 700;
	font-size: 1.8rem;
}

.blog-sidebar .widget .jsmt-shortcode a:hover {
	color: var(--secondColor);
}

.blog-sidebar .widget .jsmt-shortcode i {
	background-color: white;
	color: var(--mainColor);
	border-color: white;
	transition: background-color 0.5s ease, color 0.25s ease, border 0.5s ease;
}

.blog-sidebar .widget .jsmt-shortcode a:hover i {
	background-color: var(--secondColor);
	color: white;
	border-color: var(--secondColor);
}

.sidebar .widget ul>li .post-title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
	position: relative;
	padding-left: 2rem;
}

.sidebar .widget ul>li .post-title::before {
	content: '\f054';
	font-family: var(--iconFont);
	position: absolute;
	top: 0;
	left: 0;
	color: var(--secondColor);
	font-weight: 900;
}

/* Footer Widgets
---------------------------------------------------------------------------- */
.footer-widgets {
	border-top: 1.5rem solid var(--secondColor);
	background-color: var(--mainColor);
	color: #fff;
	clear: both;
	padding: 4rem 0;
	font-size: 1.4rem;
}

.footer-widget-area {
	padding: 0;
}

.footer-widgets ul>li {
	list-style-type: none;
}

.footer-widgets a {
	color: #fff;
}

.footer-widgets a:hover {
	color: var(--secondColor);
}

.footer-widgets .widget-title {
	font-size: 2.2rem;
	border-left: 0.5rem solid var(--secondColor);
	padding: 0.25rem 0 0.25rem 1rem;
}

.footer-widgets span.jsmt-shortcode {
	margin-bottom: 1.5rem;
}

.footer-widgets span.jsmt-shortcode.jsmt-social {
	margin: 0;
	padding: 0;
}

.footer-widgets span.jsmt-shortcode.jsmt-hours-shortcode li {
	font-size: inherit;
	margin-left: 2.6rem;
}

.footer-widgets span.jsmt-shortcode,
.footer-widgets span.jsmt-shortcode a:not(:hover) {
	color: white;
}

.footer-widgets span.jsmt-shortcode i {
	color: var(--secondColor);
	border: none;
	aspect-ratio: auto;
	background-color: transparent;
	justify-content: flex-start;
	width: 2rem;
}

.footer-widgets span.jsmt-shortcode:hover i {
	background-color: transparent;
	color: var(--secondColor);
}

/* Site Footer
---------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--mainColor);
	color: #99a2b3;
	padding: 0;
	border: none;
	font-size: 1.2rem;
	text-align: left;
}

.site-footer>.wrap {
	border-top: 0.1rem solid #4c5c7b;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.site-footer a {
	color: #99a2b3;
	transition: .25s ease all;
	font-size: inherit;
}

.site-footer a:hover {
	color: var(--secondColor);
}

.site-footer .footer-disclaimer {
	margin-top: 1rem;
}

.site-footer .widget {
	margin: 0;
}

/* JSMT Shortcode
---------------------------------------------------------------------------- */
span.jsmt-shortcode,
span.jsmt-shortcode a {
	color: var(--mainColor);
}

span.jsmt-shortcode a:hover {
	color: var(--secondColor);
}

span.jsmt-shortcode i {
	margin-right: 1rem;
	border: 0.2rem solid var(--secondColor);
	background-color: transparent;
	color: var(--secondColor);
	aspect-ratio: 1 / 1;
	width: 3.5rem;
	border-radius: 0.5rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.5rem;
	transition: background-color 0.5s ease, color 0.25s ease;
}

span.jsmt-shortcode a:hover i {
	background-color: var(--secondColor);
	color: white;
}

span.jsmt-shortcode ul.social-links>li {
	margin: 0;
	display: inline-block;
}

span.jsmt-shortcode ul.social-links>li:not(:last-of-type) {
	margin: 0;
}

span.jsmt-shortcode ul.social-links>li i {
	width: 3.2rem;
	height: 3.2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	transition: .5s ease all;
}

span.jsmt-shortcode ul.social-links>li i:hover {
	color: var(--mainColor);
}

span.jsmt-shortcode ul.social-links>li i::before {
	font-size: 1.6rem;
	height: 1.6rem;
	width: 1.6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}

span.jsmt-shortcode {
	position: relative;
	display: block;
}

span.jsmt-shortcode.jsmt-social {
	margin: 0;
	padding: 0;
}

span.jsmt-shortcode .address {
	display: inline-block;
	width: 90%;
	vertical-align: top;
}

span.jsmt-shortcode.jsmt-hours-shortcode {
	padding: 0;
}

span.shortcode-label {
	display: block;
	margin-bottom: 1rem;
	line-height: 1;
}

span.jsmt-shortcode.jsmt-hours-shortcode li:not(:last-of-type) {
	margin-bottom: 1rem;
}

span.jsmt-shortcode.jsmt-hours-shortcode li {
	font-size: 1.6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}

.jsmt-shortcode ul.jsmt-hours {
	max-width: 40rem;
}

/* Fadeup Effect
---------------------------------------------------------------------------- */
.fadeup-effect {
	position: relative;
	bottom: -100px;
	opacity: 0;
	transition: opacity 1s ease-in-out, bottom 750ms linear;
}

.fadeup-effect.active {
	bottom: 0;
	opacity: 1;
}

/* Announcement
---------------------------------------------------------------------------- */
.announcement {
	background: var(--secondColor);
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	position: relative;
	line-height: 1.2;
	padding: 1rem 0;
	/*transition: .5s ease all;*/
}

.announcement.closed {
	height: 0;
	padding: 0;
}

.announcement .wrap {
	max-width: 128rem;
	padding: 0 5%;
	margin: 0 auto;
}

.announcement p {
	margin: 0;
}

.announcement a {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	transition: color 0.5s ease;
	font-family: var(--headingFont);
	text-transform: uppercase;
	font-weight: 700;
}

.announcement a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
}

.announcement div#announcement-close {
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	opacity: .5;
	transition: opacity .3s ease;
}

.announcement div#announcement-close:hover {
	opacity: 1;
}

.announcement div#announcement-close span {
	font-size: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
}

/* Search
---------------------------------------------------------------------------- */
#search-form {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	max-width: 66rem;
	margin: 2.5rem auto 0;
	box-shadow: var(--boxShadow);
	border-radius: 3rem;
}

#search-form input {
	border-radius: 3rem 0 0 3rem;
	border-color: #fff;
	padding: 1.3rem 2.5rem;
}

#search-form [type=submit] {
	border-radius: 0 3rem 3rem 0;
	transition: background-color 0.25s ease, color 0.25s ease;
}

#fancybox-close:hover span {
	transform: none;
}

.search-results .search-results-header {
	background-color: var(--mainColor);
	color: white;
	text-align: center;
	padding: 4rem 0;
}

.search-results .search-results-header .page-title {
	font-weight: 700;
	font-size: 4rem;
}

.search-results .site-inner .flexcol {
	background-color: white;
	box-shadow: var(--boxShadow);
	border-radius: 0.5rem;
	padding: 2rem;
	position: relative;
}

.search-results .site-inner .flexcol .post-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.search-results .site-inner .flexcol .post-type {
	background-color: var(--secondColor);
	display: inline-block;
	line-height: 1;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
	color: white;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.4rem;
}

.search-results .site-inner .flexcol .post-name {
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 2.4rem;
}

.search-results .site-inner .flexcol .post-excerpt {
	font-size: 1.5rem;
	line-height: 1.4;
}

/* Landing Page
---------------------------------------------------------------------------- */
.landing-page .floating-cta,
.single-landing .floating-cta {
	position: fixed;
	bottom: 2rem;
	right: -8rem;
	opacity: 0;
	transition: 0.5s ease all;
}

.landing-page .floating-cta.appear,
.single-landing .floating-cta.appear {
	opacity: 1;
	right: 2rem;
}

/* Accordions
---------------------------------------------------------------------------- */
.accordion {
	overflow: hidden;
}

.accordion-header {
	padding: 1rem 3rem 1rem 1rem;
	cursor: pointer;
	outline: none;
	transition: 0.5s ease all;
	font-family: var(--headingFont);
	font-weight: 700;
	font-size: 1.8rem;
	list-style-type: none;
	position: relative;
	line-height: 1.2;
}

.accordion-header:hover,
.accordion[open] .accordion-header {
	background-color: #333;
	color: white;
}

.accordion-header::after {
	content: '+';
	font-weight: 700;
	font-family: var(--headingFont);
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translate(0, -50%);
	line-height: 1;
	font-size: 2.6rem;
}

.accordion[open] .accordion-header::after {
	content: '-';
}

.accordion:not(:last-of-type) {
	border-bottom: 0.1rem solid;
}

.accordion-content {
	padding: 2rem;
	background-color: #eee;
	margin-top: -10rem;
}

.accordion-content ul {
	padding-left: 3rem;
}

.accordion-content ul>li:not(:last-of-type) {
	margin-bottom: 1rem;
}

details summary {
	cursor: pointer;
	transition: margin 0.5s ease;
}

details[open] summary {
	margin-bottom: 10rem;
}

/* Video
---------------------------------------------------------------------------- */
.video-section {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
}

.video-section .video-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0 0 0 / 35%);
	color: white;
	font-size: 6rem;
	cursor: pointer;
	transition: transform 0.5s ease;
}

.video-section .video-content:hover {
	transform: scale(1.1);
}

.video-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.video-wrapper {
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}

.video-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* Coming Soon Page
---------------------------------------------------------------------------- */
.coming-soon-page .site-inner {
	padding: 0;
	max-width: none;
}

.coming-soon-page .coming-soon-section {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.coming-soon-page .coming-soon-section .image-section {
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.coming-soon-page .coming-soon-section .image-section .wrap {
	padding: 0;
}

.coming-soon-page.admin-bar .coming-soon-section .image-section {
	min-height: calc(100vh - 3.2rem);
}

.coming-soon-page .coming-soon-section .content-wrap {
	text-align: center;
	padding: 2rem 5%;
	color: white;
}

.coming-soon-page .coming-soon-section .content-wrap .coming-logo {
	margin-bottom: 2rem;
}

.coming-soon-page .coming-soon-section .content-wrap .section-title {
	font-size: 4rem;
	font-weight: 700;
}

.coming-soon-page .coming-soon-section .content-wrap a.button {
	display: block;
	margin: 10px 0;
}

.coming-soon-page .coming-soon-section .content-wrap a.button.primary-button {
	background-color: white;
	color: var(--mainColor);
}

.coming-soon-page .coming-soon-section .content-wrap a.button.secondary-button {
	color: white;
	outline-color: white;
}

.coming-soon-page .coming-soon-section .content-wrap a.button.secondary-button:hover {
	background-color: white;
	color: var(--mainColor);
}

strong.ti-rating.ti-rating-large {
    display: none !important;
}

/* Media Queries
---------------------------------------------------------------------------- */
@media only screen and (min-width:960px) {
	.entry-title {
		font-size: 4rem;
	}

	.site-header>.wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		max-width: none;
		padding: 0 4rem;
	}

	.wp-custom-logo .site-container .title-area {
		flex: 1;
		max-width: none;
	}

	.wp-custom-logo .site-container .custom-logo-link {
		aspect-ratio: auto;
	}

	.wp-custom-logo .site-container .title-area img {
		max-width: 30rem;
	}

	.site-header .widget-area {
		flex: 1;
		text-align: right;
		order: 3;
	}

	.site-header>.wrap .nav-primary {
		flex: 2;
		text-align: center;
		order: 2;
	}

	.site-header>.wrap .nav-primary .genesis-nav-menu .menu-item {
		text-align: left;
	}

	.flexbox {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.flexcol {
		flex: 1;
	}

	.full-width-content .content {
		width: 100%;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 25rem;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 2.6rem 1.5rem;
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--mainColor);
	}

	.nav-primary .genesis-nav-menu a:hover,
	.nav-primary .genesis-nav-menu .current-menu-item a {
		color: var(--secondColor);
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		padding: 1.5rem;
		font-size: 1.6rem;
	}

	.genesis-nav-menu a.sf-with-ul::after {
		content: '\f0d7';
		display: inline-block;
		-webkit-font-smoothing: antialiased;
		font-size: 1.6rem;
		font-weight: 900;
		font-family: var(--iconFont);
		vertical-align: baseline;
		padding-left: 1rem;
		line-height: 1;
	}

	.content {
		width: calc(65% - 4rem);
	}

	.sidebar {
		width: 35%;
	}

	.footer-widgets {
		padding: 8rem 0;
	}

	.footer-widgets .wrap {
		max-width: 128rem;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.footer-widgets .footer-widget-area {
		flex: 1.25;
	}

	.footer-widgets .footer-widget-area:first-of-type {
		flex: 1.5;
	}

	.footer-widgets .footer-widget-area:nth-last-child(2),
	.footer-widgets .footer-widget-area:last-of-type {
		flex: 0.5;
	}

	.footer-widgets .footer-widget-area:not(:first-of-type) {
		padding-left: 8rem;
	}

	.site-header .header-phone {
		text-align: right;
		flex: 1;
	}

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

	.accordion-header {
		padding: 2rem;
		font-size: 2rem;
	}

	.accordion-header::after {
		right: 2rem;
		font-size: 3rem;
	}

	.sidebar .widget {
		box-shadow: var(--boxShadow);
		padding: 3rem;
	}

	.coming-soon-page .coming-soon-section .content-wrap {
		max-width: 96rem;
		margin: 0 auto;
		border-radius: 3rem;
		padding: 4rem;
		background-color: rgba(0, 0, 0, 0.35);
	}

	.coming-soon-page .coming-soon-section .content-wrap a.button {
		display: inline-block;
		margin: 0 1rem;
	}

	.coming-soon-page .coming-soon-section .content-wrap .section-title {
		font-size: 6rem;
		font-weight: 700;
	}

	.search-results .search-results-header {
		padding: 8rem 0;
	}

	.search-results .search-results-header .page-title {
		font-size: 5rem;
	}

	.search-results .site-inner .flexbox {
		gap: 3rem;
	}

	.search-results .site-inner .flexcol {
		flex-basis: calc(50% - 1.5rem);
		max-width: calc(50% - 1.5rem);
	}
}

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

	.site-inner,
	.wrap {
		max-width: 128rem;
		margin: 0 auto;
	}

	.site-inner {
		padding: 6rem 0;
	}

	.single-guides .wrap,
	.single-guides .site-inner {
		max-width: 144rem;
	}
}

@media only screen and (min-width:2000px) {
	html {
		font-size: 75%;
	}

	.footer-widgets .wrap,
	.site-inner,
	.wrap {
		max-width: 80%;
		margin: 0 auto;
	}

	.nav-primary>.wrap {
		max-width: 100%;
	}
}

@media only screen and (max-width:1339px) {
	.site-inner {
		padding: 4rem 5%;
	}

	.wrap {
		padding: 0 5%;
	}

	.nav-primary>.wrap {
		padding: 0;
	}
}

@media only screen and (max-width:1279px) and (min-width:960px) {
	.site-header>.wrap {
		padding: 0 2rem;
	}

	.wp-custom-logo .site-container .title-area {
		flex: 0.25;
	}

	.wp-custom-logo .site-container .title-area img {
		aspect-ratio: 1 / 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center left;
		max-width: 8rem;
	}

	.site-header>.wrap .nav-primary {
		text-align: right;
	}

	.nav-primary .genesis-nav-menu a {
		font-size: 1.6rem;
		padding: 3.6rem 1.25rem;
	}

	.site-header .widget-area .widget ul>li.menu-button a {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width:959px) {
	.footer-widgets {
		padding: 4rem 0;
	}

	.contact-page .site-inner .content-sidebar-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}

	.contact-page .site-inner .content-sidebar-wrap .content {
		flex-basis: 100%;
		max-width: 100%;
		order: 2;
	}

	.contact-page .site-inner .content-sidebar-wrap .sidebar {
		flex-basis: 100%;
		max-width: 100%;
		order: 1;
	}

	.contact-page .site-inner .content-sidebar-wrap .sidebar .widget {
		box-shadow: none;
		margin: 0;
		border-bottom: .1rem solid #ccc;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		font-size: 1.6rem;
		padding: 1.5rem;
		font-weight: 400;
	}

	.site-header {
		position: relative;
	}

	.nav-primary .genesis-nav-menu {
		padding: 0 0 1.5rem 0;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 1.5rem 0;
	}

	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) a {
		border-bottom: .1rem solid #eee;
	}

	.menu-item-gtranslate select {
		width: auto;
		padding: 1rem;
		margin: 1.5rem 0 0 0;
	}

	.landing-page .site-header {
		padding: 1rem 0;
	}

	.landing-page .title-area {
		width: 100%;
		text-align: center;
		padding: 0;
	}

	.search-results .site-inner .flexcol:not(:last-of-type) {
		margin-bottom: 3rem;
	}

	body {
		margin-bottom: 5.4rem;
	}

	.site-header .widget-area {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100vw;
		text-align: center;
		z-index: 99;
	}

	.site-header .widget-area .widget ul>li.menu-button a {
		display: block;
		border-radius: 0;
		width: 100%;
		padding: 2rem;
		font-size: 2rem;
	}

	body {
		margin-bottom: 5.4rem;
	}

	.wp-custom-logo .site-container .title-area {
		max-width: 25rem;
	}
}

@media only screen and (max-width: 782px) {
	div#wpadminbar {
		height: 4.6rem;
	}

	.coming-soon-page.admin-bar .coming-soon-section .image-section {
		min-height: calc(100vh - 4.6rem);
	}
}

@media only screen and (max-width:659px) {
	body {
		font-size: 1.6rem;
	}

	.announcement div#close {
		top: 10rem;
		right: 0;
	}

	.coming-soon-page .coming-soon-section .content-wrap .coming-logo img {
		max-width: 20rem;
	}
}

@media only screen and (max-width:480px) {
	html {
		font-size: 57%;
	}

	span.jsmt-shortcode a {
		display: inline-flex;
		align-items: center;
		line-height: 1.4;
		font-size: 1.5rem;
	}
}