﻿/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define visible focus styles! 
:focus {
	outline: ?????;
} */

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CLEAR FIX */
.clear {
	clear: both;
}

.group:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

*html .group {
	height:1%;
}

*:first-child+html .group {
	min-height: 1px;
}

.clear {
	clear:both;
}

/* END RESET */

/* FONTS */

@font-face {
    font-family: 'Gotham Light';
    src: url('fonts/GothamNarrow-Light.woff2') format('woff2'),
        url('fonts/GothamNarrow-Light.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Mid';
    src: url('fonts/GothamNarrow-Book.woff2') format('woff2'),
        url('fonts/GothamNarrow-Book.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('fonts/GothamNarrow-Bold.woff2') format('woff2'),
        url('fonts/GothamNarrow-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Black';
    src: url('fonts/GothamNarrow-Black.woff2') format('woff2'),
        url('fonts/GothamNarrow-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
	--headings-light: 'Gotham Light', sans-serif;
	--headings-mid: 'Gotham Mid', sans-serif;
	--headings-bold: 'Gotham Bold', sans-serif;
	--headings-black: 'Gotham Black', sans-serif;
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans'), local('OpenSans'),
       url('fonts/open-sans-v13-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/open-sans-v13-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
       url('fonts/open-sans-v13-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/open-sans-v13-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-600 - latin */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
       url('fonts/open-sans-v13-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/open-sans-v13-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* General Structure */
body {
	font-size: 100%;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	background-color: none;
	height: 100%;
    min-height: 100%;
	position:relative;
	overflow-x:hidden;
	overflow-y:scroll;
	-webkit-overflow-scrolling: touch;
}

html, body {

}

#main {
	height: 100%;
    min-height: 100%;
	width:100%;
	position:relative;
	overflow: clip;
}

/* Text meant only for screen readers */

.screen-reader-text,
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

/* Alignment */

.alignleft {
	display: inline;
	float: left;
}

.alignright {
	display: inline;
	float: right;
}

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

/* END General structure */

/*Global styles */
em {
	font-style: italic;
}

strong {
	font-weight: 600;
}

.right {
	float: right;
}

.left {
	float: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--headings-mid);
	margin: 22px 0 12px 0;
	line-height: 1.2em;
	color: #58595b;
    letter-spacing: 0;
	scroll-margin-top: 4rem;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 24px;
    letter-spacing: 0.3px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 20px;

}

h6 {
	font-size: 20px;
}

p {
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em 0;
}

a:link,
a:visited {
	color: #333;
}

a:hover,
a:focus {
	text-decoration: underline;
}

/* END Global Styles */


/* --------------------> Main Menu <-------------------- */


#responsive-menu-pro-wrapper {
	display: flex;
    justify-content: center;
}

/* --------------------> Side Navigation <-------------------- */



#sideNav {
	margin-left: 100px;
	flex: 0 0 auto;
}


#sideNavH {
	margin: 0 0 10px 0;
}


#search-form-headline {
	margin: 0 0 20px 0;
}


#sideNavH p,
#search-form-headline p {
	margin: 0;
    padding: 7px 0 7px 10px;
    line-height: 1em;
    font-family: 'Raleway',sans-serif;
    font-size: 24px;
	font-weight:300;
    color: #e6e7e8;
    letter-spacing: 1px;
	background: #333333;
}


#searchFormWrapper {
	margin:0;
	padding:0;
}


#searchFormWrapper autocomplete {
	max-height: 200px;
	overflow-y: scroll;
}


#sideNavSearch {
	display: block;
	padding: 45px 0;
}


#searchFormWrapper input:focus {
	outline: 1px solid #808080;
}



#searchFormWrapper #searchform {
	display: block;
	clear: both;
	margin:0;
	padding:0;
}

#searchFormWrapper #searchform label {
	display: none;
}


#searchFormWrapper input#s {
	border: 1px solid #CCC;
	padding: 3px 15px 3px 8px;
	margin: 0;
	color: #a2a2a2;
	background: #fff;
	font-size: 0.8em;
}

#searchFormWrapper #searchsubmit {
	border: 1px solid #CCC ;
	padding:3px 6px;
	color: #666;
	font-size: 0.8em;
}

#searchFormWrapper #searchsubmit:hover {
	color: #333;
	border: 1px solid #999 ;
	background: #ccc;
	cursor:pointer;
}

#sideNav nav li a:hover {
	text-decoration: none;
	background-color: #CCC;
}

#sideNav nav ul {
	list-style: none;
	margin: 0;
	width: 100%;
}

#sideNav nav li {	
	width: 100%;
}

#sideNav nav li a {
	display: block;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}

#sideNav nav li a:link {
	text-decoration: none;
}

#sideNav nav li a:hover {
	text-decoration: none;
}

.parent a {
	font-size: 16px;
	padding: 13px 10px;
}

.firstChild a {
	font-size: 15px;
	color: #666;
	width: 100%;
	margin: 5px 0 0 0;
	padding: 12px 0 12px 24px;
}

.secondChild a {
	font-size: 15px;
	width: 100%;
	color: #999;
	background-image:none;
	padding: 12px 0 12px 34px;
	margin: -5px 0 0 0;
}

/* --------------------> Header <-------------------- */

#header-main {
	background-color: #191919;
}

#header-container {
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	padding: 60px 50px 20px 50px;
	margin: 0 auto;
}

.header-logo-desktop {
	order: 2;
}

#header-mobile {
	display: none;
}

.header-note-element {
    order: 3;
}

.header-note-element p {
	font-size: 14px;
    letter-spacing: 0.3px;
    margin: 0;
    padding: 0;
    color: #b1b1b1;
    text-align: center;
    line-height: 20px;
    font-family: var(--headings-light);
}

.header-phone-number-element {
    order: 1;
	text-align: center;
}

.header-phone-number-element a {
    text-decoration:none;
   	cursor: pointer;
	color: #b1b1b1;
}

#header-call-now p {
	font-family: var(--headings-mid);
	margin: 0 0 -3px 0;
    padding: 0;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 1.1em;
}

#header-phone-icon {
	display: none;
}

#header-phone-number p {
	font-family: var(--headings-mid);
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 1.2px;
	color: #dbdbdb;
}

/* --------> Header Call Button <-------- */

.header-call-button {
	
}

.header-call-button a {
	height: 25px;
	width: 25px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
}

#headr-call-button-wrapper {
	
}

/* --------------------> Hero Section <-------------------- */

#hero-location-page-container {
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 75px 0;
}

#hero-location-page-container::after {
	content: "";
    background-image: url(images/hero-cover-23-champion-garage-door-repair.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

#hero-location-page-title {
	display: flex;
    flex-direction: column;
    max-width: 615px;
    margin: 0 auto;
    text-align: center;
	padding: 50px 0 0 0;
}

#hero-location-page-title h1 {
	font-family: var(--headings-black);
    font-size: 44px;
	text-transform:uppercase;
    color: #191919;
	line-height: 1em;
	margin: 0;
}

#hero-location-page-title h2 {
	font-family: var(--headings-black);
    font-size: 34px;
    text-transform: uppercase;
    color: #191919;
    line-height: 1em;
    margin: 10px 0 0 0;
}

#hero-location-page-sub-title-wrapper {
	display: flex;
    margin: 4.6vh 0;
    flex-wrap: wrap;
    justify-content: center;
}

#hero-location-page-sub-title {
	display: flex;
    width: 100%;
    justify-content: space-around;
	align-items: center;
    max-width: 1200px;
}

#hero-location-page-sub-title-reviews .glsr-star-rating {
	font-size: 12px;
}

#hero-location-page-sub-title-reviews .glsr-summary-rating {
	font-family: var(--headings-bold);
}

#hero-location-page-sub-title-reviews .glsr-tag-value {
	font-family: var(--headings-mid);
    font-size: 15px;
    color: #3a3b3b;
    font-weight: 600;
}

#hero-location-page-sub-title-reviews .glsr-summary {
	max-width: 154px;
    gap: 4px;
	text-align: center;
    justify-content: center;
}

#hero-location-page-sub-title-contact-wrapper {
	display: flex;
    flex-direction: column;
    gap: 10px;
}

#hero-location-page-sub-title-phone {
	display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

#hero-location-page-sub-title-phone a {
    text-decoration: none;
    font-family: var(--headings-bold);
    color: #ffffff;
    letter-spacing: 0.3px;
    margin: 0 auto;
    background: #68b4e3;
    border-radius: 25px;
    text-align: center;
    height: 33px;
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: center;
    gap: 10px;
}

#hero-location-page-sub-title-phone-number p {
	padding: 0;
    margin: 0;
	font-size: 16px;
	letter-spacing: 1px;
}

#hero-location-page-sub-title-contact {
	display: flex;
    align-content: center;
    flex-wrap: wrap;
}

#hero-location-page-sub-title-contact a {
	text-decoration: none;
    font-family: var(--headings-bold);
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin: 0 auto;
    background: #3a3b3b;
    border-radius: 25px;
    height: 33px;
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: center;
}

#hero-location-page-offer {
	max-width: 154px;
}

#hero-location-page-offer p {
	font-family: var(--headings-mid);
    font-size: 13px;
    color: #dedede;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 18px;
    background: #3a3b3b;
    padding: 6px 12px 5px 12px;
    border: 2px dashed #adadad;
    border-radius: 5px;
}

#hero-location-page-offer span {
    font-size: 10px;
    color: #dedede;
    margin: 0;
	position: relative;
    top: -1px;
}

.hero-location-page-title p {
	font-family: var(--headings-light);
    font-size: 19px;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin: 0;
}

#hero-location-page-extension-wrapper {
	display: flex;
    max-width: 1200px;
    margin: 0 auto;
	gap: 15px;
	flex-wrap: wrap;
	padding: 0 50px;
}

.hero-location-page-extension-element {
	display: flex;
    flex: 1 1 27.5%;
	border: #c8c8c9 solid 1px;
    border-radius: 7px;
    background: rgba(255,255,255, .82);
	backdrop-filter: blur(4px);
	padding: 20px;
    gap: 20px;
}

.hero-location-page-extension-element figure {
	flex: 1 0 auto;
}

.hero-location-page-extension-element-content {
	display: flex;
    flex-direction: column;
}

.hero-location-page-extension-element-content h2 {
	margin: 0;
    font-family: var(--headings-bold);
    font-size: 17px;
    text-align: left;
    color: #3a3b3b;
	letter-spacing: 0.3px;
}

.hero-location-page-extension-element-content p {
	margin: 3px 0 0;
    font-size: 14px;
    line-height: 1.5em;
}

/* --------------------> Title for Backdrop & Blog Page <-------------------- */

#title-backdrop-page {
	background:#333333;
	margin: 0 0 7px 0;
	padding: 50px 0;
}

#title-backdrop-page h1 {
	font-family: var(--headings-black);
	font-size: 34px;
    text-transform: uppercase;
    color: #e6e7e8;
    text-align: center;
    line-height: 1em;
    margin: 0 10px;
}

#title-backdrop-page h2 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
	font-weight: 500;
    color: #e6e7e8;
    text-align: center;
    line-height: 1.4em;
	padding: 10px 0 0 0;
	margin: 0 10px;
}

/* --------------------> Breadcrumb <-------------------- */

#breadcrumb-wrapper {
    line-height: 25px;
    margin: 0 auto;
    max-width: 1100px;
    padding: 5px 50px 35px 50px;
}

#breadcrumb-wrapper p {
	margin: 0 0 7px 0;
    padding: 0;
	word-wrap: break-word;
	font-size: 13px;
}

#breadcrumb-wrapper a {
	text-decoration: none;
	color: #999;
	padding: 0 10px 0 0;
}

#breadcrumb-wrapper span a:hover {
	color: #000;
	text-decoration: underline;
}



#breadcrumb-bottom-border {

	margin: 0;

    padding: 0;

    border-bottom: 1px solid #e6e7e8;

	height: 1px;

	width: 100%;

	line-height: 1px;
}

/* --------------------> Services Section for Location & Home Page <-------------------- */

#services-location-page {
	display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

#services-location-cover {
	min-width: 350px;
    text-align: center;
    margin: -25px 0;
    flex: 1;
}

#services-location-info-wrapper {
	display: flex;
    flex-direction: column;
    padding: 50px 50px 50px 10px;
    flex: 1;
    min-width: 438px;
}

#services-location-page-head {
	margin: 0 auto;
	text-align: left;
}

#services-location-page-head h2 {
	font-family: var(--headings-black);
	font-size: 32px;
    color: #191919;
    margin: 0;
    line-height: 1.1em;
}

#services-location-page-head p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6em;
    color: #58595b;
    padding: 7px 0 0 0;
    margin: 0 auto;
	max-width: 1024px;
	text-transform: initial;
}

#services-location-page-head a {
	font-family: var(--headings-bold);
	color: #68b4e3;
	text-decoration: none;
}

#services-location-page-head-buffer {
	height: 2px;
    max-width: 1024px;
    margin: 25px 0;
    background: #5ab3e1;
    width: 100%;
}

#services-location-page-content {
	display: flex;
	gap: 35px;
	flex-wrap: wrap;
}

.services-location-page-content-element h3 {
	padding: 0;
    margin: 0 0 10px 0;
    font-family: var(--headings-bold);
    font-size: 17px;
    text-align: left;
    color: #191919;
    letter-spacing: 0.3px;
}

.services-location-page-content-items a:link, .services-location-page-content-items a:visited {
	font-size: 14px;
    line-height: 1.6em;
    color: #58595b;
    margin: 0;
    text-transform: initial;
    text-decoration: none;
}

.services-location-page-content-items a:hover {
	color:#CCC;
}

/* --------------------> Reviews Section - Home Page <-------------------- */

#reviews-home-page-links-wrapper {
	background: #e6e7e8;
	padding: 95px 50px 115px 50px;
	margin: -20px 0 0 0;
}

#reviews-home-page-links-title p, #consumer-awareness-title h2 {
	font-family: var(--headings-black);
	font-size: 32px;
    text-transform: uppercase;
    color: #6d6e71;
    text-align: center;
    margin: 0 auto;
    line-height: 1em;
}

#reviews-home-page-links-subheading {
	padding: 15px 0 100px 0;
}

#reviews-home-page-links-subheading h2, #consumer-awareness-subheading p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 15px;
    line-height: 1.5em;
	text-transform: initial;
	text-align: center;
	padding:0;
	margin:0;
}

#reviews-home-page-links {
	display: flex;
	justify-content: space-between;
    margin:0 auto;
	max-width:1000px;
	gap: 50px;
}

.reviews-home-page-links-img {
    flex-shrink: 1;
}

/* --------------------> Consumer Awareness <-------------------- */

#consumer-awareness {
	padding: 75px 50px 65px 50px;
	background: #f1f2f2;
}

#consumer-awareness-subheading { 
	max-width: 661px;
    margin: 0 auto;
    padding: 15px 0 25px 0;
}

#consumer-awareness-content-wrapper {
	display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
}

.consumer-awareness-content-element {
	display: flex;
    flex: 1;
    padding: 20px;
    flex-direction: column;
    text-align: center;
}

.consumer-awareness-content-element p {
	margin: 12px auto 20px auto;
    max-width: 227px;
    line-height: 1.5em;
    color: #5b5c5e;
	font-size: 15px;
}

.consumer-awareness-content-element a {
	font-family: var(--headings-bold);
    color: #68b4e3;
    text-decoration: none;
}

/* --------------------> Reviews Section - Location Page <-------------------- */

#location-page-reviews-wrapper {
	background:#e6e7e8;
	padding: 0 0 100px 0;
}

#location-page-reviews {
	max-width: 1000px;
	padding: 60px 50px 0 50px;
	margin: 0 auto;
}

#location-page-reviews-title {
	margin: 40px 15px 70px 15px;
}

#location-page-reviews-title h3 {
	font-family: var(--headings-black);
	font-size: 34px;
    color: #58595b;
    text-transform: uppercase;
    text-align: center;
    line-height: 1em;
    margin: 0;
}

#location-page-reviews-form {
	margin: 0 0 50px 0;
}

/* Style the button that is used to open and close the collapsible content */
.location-page-reviews-collapsible {
	background-color: #333333;
	color: #a4a4a4;;
	cursor: pointer;
	padding: 10px 19px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	max-width: 160px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.location-page-reviews-collapsible-active, .location-page-reviews-collapsible:hover {
	color: #f1f2f2;
}

/* Style the collapsible content. Note: hidden by default */
.location-page-reviews-collapsible-content {
	padding: 25px 0 20px 0;
	display: none;
	overflow: hidden;
}

.location-page-reviews-collapsible:after {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: white;
	float: right;
	margin-left: 5px;
}

.location-page-reviews-collapsible-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

#location-page-reviews-summary {
	margin: 25px 0 50px 0;
}

[class*=glsr-] {
	font-size: 15px;;
}

.glsr-review {
	border-bottom: 1px #d7d4d4 solid;
    padding: 0 0 15px 0;
}

/* --------------------> Location Page Content <-------------------- */

#location-page-content-container {
	display: flex;
    align-items: center;
    max-width: 1200px;
    padding: 75px 50px;
    margin: 0 auto;
	flex-direction: column;
	gap: 75px;
}

.location-page-section-wrapper {
	display: flex;
    justify-content: space-between;
    gap: 50px;
	align-items: center;
}

.location-page-section-content {
    flex: 1;
}

.location-page-section-content-order {
	order:2;
}

.location-page-section-content h2 {
	font-family: var(--headings-mid);
	font-size: 25px;   
    color: #58595b;
    margin: 0 0 12px 0;
}

.location-page-section-img p, .location-page-section-img h3 {
	font-family: var(--headings-light);
	font-size: 18px;
    color: #858585;
    text-align: center;
    margin: 8px 0 0 0;
    letter-spacing: initial;
    line-height: 1.25em;
}

.location-page-section-img {
	flex-shrink: 0;
	text-align: center;
	margin: 0 auto;
}

#sctionPhone {
	font-family: 'arial', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin: 24px 0 12px 0;
    line-height: 0;
	letter-spacing: 0.5px;
}

/* --------------------> Why Us Section - Location Page <-------------------- */

#why-us-location-page {
	background: #e6e7e8;
	padding: 110px 50px 95px 50px;
    margin: -25px 0 0 0;
}

#why-us-location-page-wrapper {
	display: flex;
    max-width: 776px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 50px;
}

#why-us-location-cover {
    text-align: center;
    display: flex;
    align-items: center;
    flex-shrink: 0;
	margin: 0 auto;
}

#why-us-location-page-content {
	display: flex;
    flex-direction: column;
    flex: 1;
}

#why-us-location-page-content h2 {
	font-family: var(--headings-black);
    font-size: 32px;
    text-transform: uppercase;
    color: #6d6e71;
    line-height: 1em;
}

#why-us-location-page-content p, #why-us-location-page-content ul {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #58595b;
    padding: 7px 0 0 0;
    max-width: 1024px;
    text-transform: initial;
    margin: 0;
}

#why-us-location-page-content ul li {
	list-style: disc;
    display: list-item;
    margin: 0 0 6px 25px;
    line-height: 1.4em;
    break-inside: avoid-column;
}

/* --------------------> FAQs Page <-------------------- */

#faqs-page {
	max-width: 928px;
    padding: 0 50px 75px 50px;
    margin: 0 auto;
    display: block;
    gap: 50px;
}

.faqs-section-wrapper-top-margin {
	margin: 75px 0 0 0;
}

.faqs-section-title {
	text-align: center;
	margin: 0 0 25px 0;
}

.faqs-section-title h2 {
	margin: 0;
	padding: 0;
}

.faqs-page-q {
	border-bottom: 1px solid #d7d3d3;
	padding: 25px 0 10px 0;
}

.faqs-page-q button {
	background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
}

.faqs-page-collapsible h3 {
	font-family: var(--headings-bold);
    font-size: 16px;
    padding: 0 0 10px 0;
    margin: 0;
    display: flex;
    flex: 1;
}

.faqs-page-collapsible-active, .faqs-page-collapsible:hover {
	cursor: pointer;
}

.faqs-page-collapsible h3:after {
	
	content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 25px;
    color: #727375;
	float: right;
	margin-left: 25px;
	display: flex;
    justify-content: flex-end;
    flex: 1;
}

.faqs-page-collapsible-active h3:after {
  	content: '\2212'; /* Unicode character for "minus" sign (+) */
}

.faqs-page-a {
	padding: 0;
	display: none;
	overflow: hidden;
}

.faqs-page-a p {
	font-size: 15px;
    color: #333;
}


/* --------------------> Contact Us Section for Location Pages <-------------------- */



#contact-us-loaction-page {

	background-color: #333;

    display: flex;

    flex-direction: column;

    padding: 100px 50px;

	

}



#contact-us-loaction-page-container {

	display: flex;

    align-items: center;

    padding: 0 0 30px 0;

    max-width: 800px;

    gap: 100px;

    margin: 0 auto;

    border-bottom: 2px #73b5e5 solid;

}



#contact-us-loaction-page-title h3 {

	font-family: var(--headings-black);

    font-size: 35px;

    color: #e6e7e8;

    text-transform: uppercase;

    margin: 0;

    white-space: nowrap;

}



#contact-us-loaction-page-details-wrapper {

	display: flex;

    flex-direction: column;

    align-items: flex-start;

}



.contact-us-loaction-page-details {

	display: flex;

	padding: 15px;

}



.contact-us-loaction-page-details p {

	color: #e6e7e8;

	font-size: 15px;

	margin: 0 0 0 25px;

	line-height: 1.6em;

	text-align: left;

	align-self: center;

}



.contact-us-loaction-page-details a {

	color: #FFFFFF;

	text-decoration: none;

	font-size: 15px;

	line-height: 1.1em;

	align-self: center;

	letter-spacing: 0.06em;

}



.contact-us-loaction-page-details figure {

	flex: 1 0 auto;

}



#contact-us-loaction-page-request {

	margin: 0 auto;

    padding: 50px 0 0 0;

}



/* --------------------> Contact Us Page <-------------------- */



#contact-us-main-content-backround {

	background: #f1f1f1;

	margin-top: -35px;

}



#contact-us-main-content {

	display: flex;

    flex-direction: column;

    max-width: 1100px;

    margin: 0 auto;

	padding: 45px 25px 60px 25px;

}



#contact-us-main-content-intro {

	margin: 0 auto 65px auto;

    text-align: center;

}



#contact-us-main-content-intro p {

	font-family: var(--headings-light);

    font-size: 20px;

    padding: 0;

    margin: 0;

    line-height: 1.1em;

    color: #333333;

}



#contact-us-main-content-header p {

	margin-top: 8px;

	font-size: 15px;

}



#contact-us-assets {

	display: flex;

	gap: 75px;

    justify-content: space-around;

}



#contact-us-form-wrapper {

	display: flex;

    flex: 1 1 auto;

    flex-direction: column;

	max-width: 530px;

    min-width: 237px;

}



#contact-us-form-wrapper h2, #contact-us-more-ways h2 {

    font-family: var(--headings-bold);

    font-size: 22px;

    padding: 0;

    margin: 0 0 40px 0;

    line-height: 1.1em;

    color: #6a6a6a;

}



.form-section {

	display: flex;

    flex-direction: column;

}



.wpcf7  {

	display: flex;

    flex-direction: column;

    flex: 1 0 auto;

	margin: -20px 0 0 0;

}



.wpcf7 form p {

	margin: 20px 0 0 0;

    line-height: initial;

    font-size: initial;

}



.wpcf7 p label {

	font-family: var(--headings-bold);

    font-size: 15px;

    color: #333333;

    line-height: 1.1em;

    margin: 0;

    letter-spacing: 0.2px;

}



.wpcf7 input[type="text"], .wpcf7 input, .wpcf7 textarea {

    padding: 5px 8px;

    box-sizing: border-box;

    font-size: 16px;

    color: #6a6a6a;

	margin: 6px 0 5px 0;

    width: 100%;

}



.wpcf7 input[type=submit] {

	width: 140px;

	height: 32px;

    font-family: var(--headings-bold);

    font-size: 15px;

    color: #f0f0f1;

    background: #191919;

    float: right;

	margin: -15px 0 0 0;

	cursor: pointer;

}



.wpcf7-response-output {

	font-family: var(--headings-bold);

    font-size: 15px;

    color: #333333;

    line-height: 1.1em;

    letter-spacing: 0.2px;

	text-align: center;

	margin: 1em 0.5em 1em !important;

    padding: 5px 15px !important;

}



#contact-us-more-ways {

	display: flex;

    flex-direction: column;

	max-width: 370px;

}



#contact-us-more-ways-content {

	margin: 0;

	display: flex;

    flex-direction: column;

}



.contact-us-more-ways-content-element {

	display: flex;

	align-items: flex-start;

	margin: 0 0 30px 0;

}



.contact-us-more-ways-content-element a {

	display: flex;

    font-family: var(--headings-bold);

    font-size: 17px;

    padding: 0;

    margin: 0 auto 4px auto;

    line-height: 1.3em;

    color: #565656;

}



.contact-us-more-ways-content-element figure {

	margin: 0 20px 0 0;

	flex-shrink: 0;

}



.contact-us-more-ways-content-element p {

	font-size: 18px;

    font-family: var(--headings-light);

    color: #101010;

	margin: 0;

}



#contact-us-faqs {

	display: flex;

    max-width: 1100px;

    margin: 0 auto;

	flex-direction: column;

	padding: 60px 50px 50px 50px;

}



#contact-us-faqs h2 {

	font-family: var(--headings-bold);

    font-size: 25px;

    padding: 0;

    margin: 0 auto 50px auto;

    line-height: 1.1em;

    color: #191919;

}



.contact-us-faqs-content-element h3 {

	font-family: var(--headings-bold);

    font-size: 17px;

    padding: 0;

    margin: 0 auto 4px auto;

    line-height: 1.3em;

    color: #565656;

}



.contact-us-faqs-content-element p {

    font-size: 15px;

    padding: 0;

    margin: 0 auto 35px auto;

    line-height: 1.4em;

    color: #565656;

}



.contact-us-button a {

	padding: 10px 25px;

    text-decoration: none;

    font-family: var(--headings-bold);

    font-size: 17px;

    color: #ffffff;

    letter-spacing: 0.3px;

    background: #68b4e3;

    border-radius: 25px;

    text-align: center;

}



/* --------------------> About Us Page <-------------------- */



#about-us-page {

    margin: 0 0 75px 0;

}



.about-us-page-element {

	display: flex;

    max-width: 1100px;

    margin: 0 auto;

    gap: 50px;

	padding:0 50px;

    align-items: center;

}

.about-us-page-element-block {
	margin: 75px auto 75px auto;
	align-items: flex-start;
    gap: 90px;
}

.about-us-page-element figure {

	flex: 0 1 auto;

    margin: 0 auto;

}



.about-us-page-element-content {

	flex: 1;

	min-width: 309px;

}



.about-us-page-element-content h2 {

	font-family: var(--headings-bold);

    font-size: 27px;

    letter-spacing: 0.3px;

    color: #58595b;

    line-height: 1.1em;

    padding: 0;

    margin: 0 0 0.3em 0;

}



.about-us-page-element-content p {

	font-size: 15px;

    color: #58595b;

	margin: 0;

}



#about-us-page-element-content-buffer {

	background: #5ab3e1;

    width: 100%;

    height: 2px;

	margin: 25px 0;

}



#about-us-page-element-content-contact {

	justify-content: center;

    display: flex;

}



#about-us-page-element-backround {

	background: #e6e7e8;

	margin: 75px 0;

    padding: 50px 0;

}



.about-us-page-element-content-block {

	display: flex;

    flex-direction: column;

    align-items: center;

    flex: 1;

}

/* --------------------> Repair Service Page - Service Single <-------------------- */

.service-main {
	max-width: 1100px;
	padding: 35px 50px 50px 50px;
    margin: 0 auto;
}

.service-single-element {
	display: flex;
    gap: 50px;
    align-items: center;
	flex-wrap: wrap;	
}

.service-single-content {
	flex: 2.5;
}

.service-single-content h2 {
	padding: 0;
    margin: 0 0 0.3em 0;
}

.service-single-object {
	text-align: center;
    flex: 1;
    min-width: 250px;
}

.service-single-contact-widget {
	background-color: #f1f2f2;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex: 1 0;
	align-items: center;
    align-self: stretch;
    justify-content: center;
	min-width: 190px;
}

.service-single-contact-widget h2 {
	font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
    line-height: 1.1em;
    padding: 0;
    text-align: center;
    letter-spacing: 0.5px;
	margin: 12px 0 0;
}

.service-single-contact-widget p {
	font-size: 14px;
    color: #58595b;
    margin: 0 0 10px 0;
}

#service-single-contact-widget-button a {
	padding: 6px 23px;
    text-decoration: none;
    font-family: var(--headings-bold);
    font-size: 16px;
    color: #ffffff;
    background: #68b4e3;
    border-radius: 25px;
}

.service-single-object p {
	font-size: 13px;
    line-height: 1.7em;
    color: #58595b;
    text-align: center;
	margin: 0;
}

.service-single-content p {
	font-size: 15px;
    color: #58595b;
}

.service-single-margin-top {
	margin-top: 60px;
}

.service-single-margin-bottom {
	margin-bottom:60px;
}

#service-single-faq {
    padding: 50px 50px;
}

#service-single-faq-title {
	text-align: center;
	margin: 0 0 15px 0;
}

#widget-service-single-contact-wrapper {
	margin: 60px 0 25px 0;
}

.order-2 {
	order: 2;
}

.service-single-content.flex-35 {
	flex: 3.5 !important;
}

.service-single-content ul {
	list-style-type: square;
    margin-bottom: 20px;
	max-width: 1100px;
}

.service-single-content ul li {
	margin: 0 0 6px 25px;
	line-height: 1.4em;
	break-inside: avoid-column;
}

.service-single-content ul li p {
	line-height: 1.4em;
    margin: 0 0 6px 0;
}

.service-border {
	height: 2px;
    background: #58595b;
    margin: 7px 0 14px 0;
    padding: 0;
	width: 100%;
}

/* --------> Sales Page <-------- */

.page-title {
    margin: 0 0 7px 0;
    padding: 40px 0 30px 0;
	text-align: center;
	background-color: #404040;
}

.sales-page-title {
	background-image: url(images/title-pattern-sales.png);
	background-repeat: repeat;
	margin: 0 0 35px 0;
	background-color: #404040;

}

.product-page-title {
	background-image: url(images/title-pattern-product.png);
	background-repeat: repeat;
	background-color: #404040;
}

.page-title h2, .page-title.product-page-title span {
	font-family: var(--headings-mid);
    font-size: 23px;
    text-transform: uppercase;
    color: #e6e7e8;
    line-height: 1em;
    margin: 8px 10px 5px 10px;
	display: block;
}

.page-title.product-page-title br {
	display: none;
}

.page-title h1 {
	font-family: var(--headings-black);
    font-size: 34px;
    text-transform: uppercase;
    color: #e6e7e8;
    line-height: 1em;
    margin: 0 10px;
}

.page-title p {
	margin: 20px auto 0 auto;
    color: #e6e7e8;
    font-size: 14px;
    padding: 0 15px;
}

.sales-page {
	max-width: 1100px;
    padding: 0 50px 50px 50px;
    margin: 0 auto;
}

#sales-nav {
	background: #f1f1f1;
	width: 100%;
	margin: -35px auto 65px auto;
}

#sales-nav-wrapper {
	max-width: 1100px;
    padding: 50px 0 35px 0;
    margin: 0 auto;
}

.sales-page-items-wrapper {
	display: flex;
	gap: 75px;
}

.sales-page-item.sales-page-item-img {
	text-align: center;
    align-self: center;
	flex: 1 1 auto;
    min-width: 267px;
}

.sales-page-item.sales-page-item-img.sales-page-item-img-order-2 {
	order: 2;
}

.sales-page-items-wrapper.sales-page-item-margin-top {
	margin-top: 75px;
}

.sales-page-item h2 {
	font-family: var(--headings-bold);
    font-size: 27px;
    padding: 0;
    margin: 18px 0 0 0;
    line-height: 1.1em;
}

.sales-page-item p, .sales-page-block p, .about-us-page-element-content-block p {
	font-size: 15px;
    color: #58595b;
}

.sales-page-item ul {
	list-style: disc;
    text-align: left;
    margin: 20px 0 0 0;
    font-size: 15px;
    padding-left: 25px;
    align-self: flex-start;
}

.sales-page-item ul li {
	margin: 10px 0 0 0;
}

.sales-page.sales-page-block-top-margin {
	margin: 75px auto 0 auto;
}

.sales-page-block-wrapper {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 90px;
}

.sales-page-block {
	display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 314px;
}

.sales-page-block h2, .sales-page-callouts-element h2, .about-us-page-element-content-block h2 {
	font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
    line-height: 1.1em;
    padding: 0;
    margin: 25px 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.sales-page-border, .contact-widget-border, .bout-us-page-block-border {
	height: 2px;
    background: #58595b;
    margin: 7px 0 14px 0;
    padding: 0;
    width: 100%;
}

#sales-page-gallery {
	margin: 15px auto 0 auto;
    background-color: #333333;
    padding: 65px 50px 50px 50px;
}

#sales-page-gallery h2 {
	font-family: var(--headings-black);
    font-size: 27px;
    color: #e6e7e8;
    text-align: center;
    line-height: 1.2em;
    margin: 25px 25px 35px 25px;
	text-transform: uppercase;
}

#sales-page-gallery p {
	font-family: var(--headings-mid);
	color: #878787;
    margin: 0 auto;
    font-size: 15px;
    text-align: center;
}

#sales-page-gallery-wrapper {
	max-width: 1172px;
    margin: 0 auto;
}

#bwg_container1_0 #bwg_container2_0 .bwg_back_0 {
    color: #ccc !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item a {
    background: #3f3f40 !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item a {
	margin-right: 5px !important;
    margin-bottom: 5px !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-title2 {
    padding: 10px 0 !important;
}

#sales-page-gallery-buy-direct {
	background: #3f3f40;
	width: 100%;
	margin: 0 auto;
}

#sales-page-gallery-buy-direct-wrapper {
	max-width: 1042px;
    display: flex;
    margin: 0 auto;
    gap: 20px;
    padding: 17px;
    justify-content: space-around;
}

#sales-page-gallery-buy-direct h3 {
	font-family: var(--headings-bold);
    font-size: 19px;
    color: #9d9fa3;
    line-height: 1.1em;
    padding: 0;
    margin: 0;
    letter-spacing: 0.5px;
	text-transform: uppercase;
}

#sales-page-gallery-buy-direct p {
	font-family: var(--headings-mid);
    font-size: 17px;
	padding: 0;
    margin: 0;
	letter-spacing: 0.5px;
	color: #9ea0a3;
	line-height: 1.1em;
}

#sales-page-callouts-wrapper {
	margin: 75px auto 85px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.sales-page-callouts-element {
	text-align: center;
	max-width: 263px;
	flex: 1;
}

.sales-page-callouts-element p {
    color: #58595b;
    margin: 5px 0 0 0;
    font-size: 13.5px;

}

#sales-page-footnote p {
	color: #707070;
    font-size: 13px;
    margin: 0;
    border-top: 1px solid #dddddd;
    padding: 15px 0 0 0;
}

#sales-page-footnote a:link, #sales-page-footnote a:visited {
	text-decoration: none;
}

#sales-page-footnote a:hover {
	text-decoration: underline;
}

/* --------> Service Area Page <-------- */



#service-area-map {

	margin: 15px auto 0 auto;

    background-color: #333333;

    padding: 65px 50px 30px 50px;

}



#service-area-map-container {

	display: flex;

    flex-wrap: wrap;

    margin: 0 auto;

    gap: 75px;

	justify-content: center;

}



#service-area-map-content {

	display: flex;

    flex-direction: column;

    align-self: center;

	max-width: 340px;

    min-width: 208px;

	flex: 1 ;

}



#service-area-map-content h2 {

	font-family: var(--headings-bold);

    font-size: 27px;

    padding: 0;

    margin: -30px 0 0 0;

    line-height: 1.1em;

    color: #e6e7e8;

}



#service-area-map-content p {

	font-size: 15px;

    color: #c3c3c3;

    padding: 0;

    margin: 10px 0 0 0;

}



#service-area-map-wrapper {

    max-width: 595px;

	overflow: hidden;

	min-width: 326px;

	flex: 1 ;

}



#service-area-map-overlay {

	height: 385px;

    margin-top: -400px;

    width: 100%;

}



#service-area-map-wrapper iframe {

	min-height: 400px;

	position:relative;

	top:-50px;

	border:none;

}



#service-area-cities {

	display: flex;

    flex-direction: column;

	align-items: center;

	margin: 80px auto 35px auto;

}



#service-area-cities h2 {

	font-family: var(--headings-bold);

    font-size: 17px;

    color: #58595b;

    line-height: 1.1em;

    padding: 0;

    margin: 15px 0 0 0;

    text-align: center;

    letter-spacing: 0.5px;

}



#service-area-cities-list ul {

	display: flex;

    flex-wrap: wrap;

    gap: 15px 25px;

    font-size: 14px;

    list-style: inside;

    justify-content: center;

    margin: 15px 0 0 0;

	list-style-type: none;

}



#service-area-cities-list ul a:link, #service-area-cities-list ul a:visited {

	text-decoration: none;

}



#service-area-cities-list ul a:hover {

	text-decoration: underline;

}

/*

Coupons Page -------------------

*/

.coupons-page-wrapper {
	display: flex;
    flex-wrap: wrap;
    gap: 65px 25px;
	margin: 0 0 75px 0;
}

.coupons-page-container {
	display: flex;
	flex:1;
	flex-direction: column;
	min-width: 400px;
}

.coupons-page-element {
	background-color:#3a3b3b;
	display: flex;
	flex:1;
	margin: 0 0 10px 0;
	box-shadow: 0 0.0625rem 0.125rem rgb(0 0 0 / 55%), 0 0.1875rem 0.4375rem rgb(0 0 0 / 20%);
}

.coupons-page-logo-wrapper {
	display: flex;
    flex-direction: column;
	margin: 5px 7px;
	flex:1;
}

.coupons-page-logo {
	display: flex;
	flex: 1;
    align-items: center;
    justify-content: center;
	padding: 10px;
}

.coupons-page-logo-blue {
	background: #dbe7ed;
	background-image:url(images/garage-door-coupon-star-dot-blue.png);
	background-repeat: space;
}

.coupons-page-logo-gray {
	background: #d1d3d4;
	background-image:url(images/garage-door-coupon-star-dot-gray.png);
	background-repeat: space;
}

.coupons-page-logo-orange {
	background: #f9b7a8;
	background-image:url(images/garage-door-coupon-star-dot-orange.png);
	background-repeat: space;
}

.coupons-page-stars-border {
	min-height: 16px;
	width:inherit;
	background-image:url(images/garage-door-coupon-star.png);
	background-repeat: space;
	background-position: center;
}

.coupons-page-stars-border-blue {
	background-color: #b6ceda
}

.coupons-page-stars-border-gray {
	background-color: #939598;
}

.coupons-page-stars-border-orange {
	background-color: #f5876e;
}

.coupons-page-content-wrapper {
	display: flex;
    flex-direction: column;
	margin: 5px 7px 5px 0;
	flex:2.5;
}

.coupons-page-content {
	display: flex;
	flex-direction: column;
    text-align: center;
	align-items: center;
	flex: 1;
	padding: 10px 10px;
}

.coupons-page-content-blue {
	background-color: #dbe7ed;
	background-image:url(images/garage-door-coupon-star-dot-blue.png);
	background-repeat: space;
}

.coupons-page-content-gray {
	background-color: #d1d3d4;
	background-image:url(images/garage-door-coupon-star-dot-gray.png);
	background-repeat: space;
}

.coupons-page-content-orange {
	background-color: #f9b7a8;
	background-image:url(images/garage-door-coupon-star-dot-orange.png);
	background-repeat: space;
}

.coupons-page-content h3 {
	font-family: var(--headings-black);
	font-size: 21px;
    margin: 0;
}

.coupons-page-content-contact {
	display: flex;
	margin:5px 0;
	flex-wrap: wrap;
    gap: 0 10px;
    text-align: center;
    justify-content: center;
}

.coupons-page-content p {
	font-size: 13px;
	margin:0;
}

.coupons-page-content-terms p {
	font-size: 9px;
	margin:0;
	text-align: center;
}

.coupons-page-print-button-element {
	margin: 0 auto;
}

.coupons-page-print-button-element a:link, .coupons-page-print-button-element a:visited {
	color: #bcbec0;
	text-decoration: none;
}

.coupons-page-print-button-element a:hover {
	color:#FFF;
	text-decoration: none;
}

.coupons-page-print-button-txt {
	background-color: #58595b;
    padding: 5px 40px 8px 40px;
}

.coupons-page-print-button-txt span {
	font-family: var(--headings-bold);
	font-size: 14px;
    text-align: center;
    line-height: 1em;
    letter-spacing: 1px;
}

/*
Openers Page -------------------
*/

#openers-page-banner {
	background-image: url(images/garage-door-openers-technology.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 65%;
	background-position-x: 35%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px auto 0 auto;
    max-width: 1590px;
}

#openers-page-banner-title {
	max-width: 610px;
    padding: 0 25px 50px 0;
    margin: 0 0 0 516px;
}

#openers-page-banner-title h2 {
	font-family: var(--headings-black);
    font-size: 3.5em;
    color: #3a3b3b;
    line-height: 1em;
    margin: 0;
    padding: 55px 0 20px 0;
}

#openers-page-banner-title p {
	margin: 0;
    padding: 0 0 25px 0;
    font-family: var(--headings-bold);
    font-size: 19px;
    color: #737373;
    line-height: 1.1em;
    letter-spacing: 0.5px;
}

#openers-page-banner-images {
	display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0;
    padding: 30px 0 35px 0;
    flex-wrap: wrap;
    gap: 50px 25px;
}

#openers-page-banner-images figure {
    width: 30%;
    flex: 1 0 auto;
    text-align: center;
}

/*

Parts Page -------------------

*/

#parts-page-banner {
	background-color: #0a151b;
    width: 100%;
}

#parts-page-banner-wrapper {
	max-width: 1200px;
	display: flex;
	justify-content: center;
	margin: 0 auto
}

#parts-page-banner figure {
	flex: 1 0 auto;
}

#parts-page-banner-content {
	display: flex;
    flex-direction: column;
    align-self: center;
    z-index: 1;
    position: absolute;
    transform: translate(60%, 0%);
    margin: 0 50px 0 0;
}

#parts-page-banner-content h2 {
	font-family: var(--headings-black);
	text-transform: uppercase;
    font-size: 3.5em;
    color: #e6e7e8;
    line-height: 1em;
    margin: 0;
    padding: 0 0 20px 0;
	max-width: 420px;
}

#parts-page-banner-content p {
	font-family: var(--headings-bold);
    font-size: 17px;
    color: #f3f3f3;
    line-height: 1.1em;
    padding: 0;
    text-align: left;
    letter-spacing: 0.5px;
    max-width: 385px;
}

/*

Product single page: Openers and Parts  -------------------

*/

.product-container {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#product-single {
	gap: 65px;
	margin: 0 0 50px 0;
}

#product-single-content {
	flex: 2;
	flex-direction: column;
	min-width: 350px;
	margin: 0 auto 0 auto;
	gap: 15px;
    justify-content: center;
}

#product-single-content p, .product-features-wrapper p {
	font-size:14px;
    color: #58595b;
    text-align: left;
    line-height: 1.7em;
    padding: 0;
	margin: 0;
}

#product-image {
	align-items: center;
	margin: 0 auto 17px auto;
}

.product-features-wrapper {
	background-color: #f1f2f2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 251px;
    flex: 1;
    flex-wrap: wrap;
    align-self: stretch;
    padding: 20px 25px 50px 25px;
}

.product-features-element {
	width: 100%;
}

.product-features-wrapper h2 {
    font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
    line-height: 1.1em;
    padding: 0;
    margin: 25px 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.product-features-wrapper ul li {
    margin: 6px 0 0 1.5em;
    list-style: circle;
    list-style-position: outside;
    line-height: 18px;
    font-size: 13.5px;
    color: #58595b;
}

#product-features-element-margin-top {
	margin: 0 0 2px 0;
}

#product-features-element-margin-bottom{
	margin: 18px 0 2px 0;
}

#product-features-asterisk p {
	font-size: 12px;
    margin: 5px 0 0 5px;
}

/* -------- Products Navigation: Openers & Parts -------- */

#products-navigation {
	display: flex;
	flex-wrap: wrap;
	align-self: stretch;
	margin: 20px 0 50px 0;
	justify-content: center;
	gap: 70px;	
}

.products-navigation-element {
	display: flex;
    flex: 1;
	flex-wrap: wrap;
	align-self: stretch;
	justify-content: center;
	min-width: 290px;
}

.products-navigation-wrapper {
	display: flex;
    flex-direction: column;
	align-items: center;
}

.products-navigation-wrapper h2 {
	font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
    line-height: 1.1em;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.products-navigation-element a, .products-navigation-element a:link, .products-navigation-element a:visited {
	color: #58595b ;
	text-decoration: none;
}

.products-navigation-element:hover h2 {
	color: #212121;
}

.products-navigation-element:hover figure {
	transform: scale(1.1);
	transition: transform .3s;
}

#products-navigation-title h2 {
	font-family: var(--headings-mid);
    font-size: 23px;
    color: #58595b;
    line-height: 1.3em;
    text-align: center;
    margin: 100px auto 10px auto;
}

#products-navigation-title-border {
	border-bottom: 1px solid #e6e7e8;
	height: 1px;
	width: 100%;
	margin: 0 auto 50px auto;
}

/* -------- Terms Pages -------- */

#terms {
	margin: 35px 0 0 0;
}

#terms h2 {
	font-size: 17px;
    font-family: var(--headings-bold);
}

#terms p {
	font-size: 15px;
    color: #333333;
}

/* --------------------> Blog Content <-------------------- */

.post-container {
	padding: 0 50px 0 50px;
	margin: 0 auto;
    max-width: 1600px;
}

#page-container {
	margin: 0px;
}

.entry-header {
    border-bottom: 1px solid #e6e7e8;
	margin: 0 0 20px 0;
    padding: 0 0 25px 0;
}

.entry-header a:link,
.entry-header a:visited {
	text-decoration: none;
}

.entry-header a:hover,
.entry-header a:focus {
	text-decoration: underline;
}

.entry-title {
	font-family: var(--headings-mid);
	word-wrap: break-word;
    color: #58595b;
    font-size: 30px;
    margin: -10px 0 -5px 0;
    line-height: 1.1em;
}

.name-date {
	font-size: 0.8em;
	margin-top: 17px;
    line-height: 1.4em;
}

.entry-meta {
	clear: both;
	display: block;
}

.index-meta {
	margin: 10px 0 0 0;
}

.index-meta li {
	float: left;
	margin: 0 1px 0 0;
	text-transform: uppercase;
}

.index-meta li a:link,
.index-meta li a:visited {
	font-size: 0.6em;
	padding: 2px 20px;
	background: #9b9b9b;
	text-decoration: none;
	line-height: 17px;
	color: #fff;
}

.index-meta ul ul li a:link,
.index-meta ul ul li a:visited {
	padding: 2px 10px;
}

.index-meta li.theComments a:link,
.index-meta li.theComments a:visited {
	background: #333;
}

.index-meta li a:hover,
.index-meta li.theComments a:hover,
.index-meta li a:focus,
.index-meta li.theComments a:focus {
	background: #78929b;
}

li.theComments span {
	display: none;
}

.single-thumb {
	margin: 0 0 1em 0;
}

.single-thumb img {
	max-width: 100%;
	height: auto;
}

.entry-content p {
	line-height: 1.6em;
	margin-bottom: 1.2em;
}

.entry-content li {
	font-size: 15px;
	margin: 0 0 6px 25px;
	line-height: 1.4em;
}

.entry-content ul {
	list-style-type: square;
	margin-bottom: 20px;
}

.entry-content ol {
	list-style-type: decimal;
	margin-bottom: 2em;
}

.single-author .entry-meta .byline {
	display: none;
}

#content nav {
	display: block;
	overflow: hidden;
}

#content nav .nav-previous {
	float: left;
	width: 50%;
}

#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

#content #nav-above {
	display: none;
}

.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}

#nav-below {
	margin: 1em 0 0;
}

.page-link {
	clear: both;
	margin: 0 0 1em;
}

.page .edit-link {
	clear: both;
	display: block;
}

.index-page-title {
	font-weight: 400;
    font-size: 23px;
    margin: 0;
    padding: 0;
}

.index-title {
	font-size: 22px;
	font-weight: 100;
	margin: 20px 0;
	line-height: 1.3em;
	word-wrap: break-word;
}

.index-title a {
	text-decoration: none;
	color: #58595b;
}

.index-title a:hover,
.index-title a:focus {
	text-decoration: underline;
}

.index-name-date {
	font-size: 0.8em;
	margin: 0px;
}



.index-name-date a {

	text-decoration: none;

}



.index-name-date a:hover,

.index-name-date a:focus {

	text-decoration: underline;

}



.index-content {
	font-size: 14px;
	margin: 10px 0;

}



.more-link {

	text-align: right;

	margin: 10px;

}

.more-link a:link,

.more-link a:visited {

	font-size: 0.6em;

	padding: 2px 20px;

	background: #9B9B9B;

	text-decoration: none;

	text-transform: uppercase;

	line-height: 17px;

	color: white;

}



.more-link a:hover,

.more-link a:focus {

	background-color: #3399FF;

}



#search-container {

	

}



#search-content .index-post-container {

	margin: 0 0 50px 0;

}



#search-content {

	max-width:550px;
	margin: 25px 50px 0 50px;

}



#search-searchbox {

	margin: 0 0 20px 0;

}



#content-container {

    margin: 0 auto;

	padding: 0;

    max-width: 1200px;

}



.page-header-wrapper {

	margin: 0 auto;

    max-width: 1100px;

    padding: 25px 25px 0 25px;

}



.page-header {

    margin: 0;

    padding: 0;

}



.page-header h1 {

	font-weight: 400;

	font-size: 1.5em;

	margin: 0;

	padding: 0;

}



.page-header p {

    margin: 5px 10px 0 10px;

	padding: 0;

}



/* --------------------> Index - Traditional <-------------------- */


#regular-index {
    margin: 50px 0 0 0;
}

#regular-content {
	display: flex;
    flex-wrap: wrap;
	margin: 0;
}

#regular-index .index-post-container {
	width: initial;
	border: none;
	float: initial;
	margin: 0 50px 75px 50px;
	flex: 1 35%;
	max-width: 500px;
}

#regular-index .the-thumbnail {
	display: none;
}

#regular-index .index-content {
	margin: 10px 0;
}

#regular-index .index-content p {
	font-size: 15px;
	margin: 0;
}

#regular-index .index-title {
	font-family: var(--headings-mid);
	line-height: 1.1em;
    color: #58595b;
    font-size: 25px;
    margin: 0;
    padding: 5px 0 0 0;
}

#regular-index .index-name-date {
	padding: 0;
	margin: 10px 0 10px 0;
}

#sidebar {
	margin: 0;
	display: block;
}

#sidebar .widget {
	width: 100%;
	min-width: 200px;
	max-width: 325px;
	padding: 0;
	margin: 0 0 50px 0;
}

#sidebar .widget-title {
	font-family: var(--headings-bold);
	font-size: 17px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1em;
    word-wrap: break-word;
    color: #58595b;
}

#sidebar .widget ul {
	list-style-type: none;
	margin: 0;
}

#sidebar .widget ul li {
	margin: 16px 0 0 0;
}

#sidebar .children {
	margin-left: 0.5em;
	padding: 0!important;
	float: none;
}

#sidebar ul li a {
	text-decoration: none;
    display: block;
    padding: 0;
    line-height: 1.2em;
    color: #68b4e3;
    font-size: 15px;
    font-weight: 600;
}

#sidebar ul li a:hover,
#sidebar ul li a:focus {
	text-decoration: underline 2px;
}

/* Front page widgets */

.index-widget-area .widget {
	width: 258px;
	float: left;
	padding: 20px;
	margin: 0 0 20px 0;
}

.index-widget-area .widget-title {
	font-size: 1.5em;
	font-weight: 100;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 1.3em;
	word-wrap: break-word;
}

.index-widget-area .children {
	margin-left: 0.5em;
	padding: 0!important;
	float: none;
}

.index-widget-area ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 0;
	font-size: 90%;
}

.index-widget-area ul li a:hover,
.index-widget-area ul li a:focus {
	background-color: #E5E5E5;
	text-decoration: none;
	padding: 10px;
}

.index-widget-area .recentcomments a:hover,
.index-widget-area .recentcomments a:focus {
	background: inherit;
	text-decoration: underline;
}

/* Recent Comments widget */

.recentcomments {
	font-size: 90%;
	padding: 10px 0;
}

.recentcomments a {
	font-size: 100%!important;
}

.recentcomments a:hover,
.recentcomments a:focus {
	background: inherit;
	text-decoration: underline;
}

.textwidget {
	padding: 10px 0 0 0;
	line-height: 1.3em;
	font-size: 0.9em;
}

.textwidget p {
	font-size: 100%;
}

/* Calendar Widget */

.widget_calendar #wp-calendar {
	color: #555;
	width: 100%;
	text-align: center;
}

.widget_calendar #wp-calendar caption,
.widget_calendar #wp-calendar td,
.widget_calendar #wp-calendar th {
	text-align: center;
}

.widget_calendar #wp-calendar tr {
	line-height: 1.8em;
}

.widget_calendar #wp-calendar caption {
	font-size: 1em;
	padding: 5px 0 10px 0;
	text-transform: uppercase;
}

.widget_calendar #wp-calendar th {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
}

.widget_calendar #wp-calendar tfoot td {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/* PAGINATION */

.paginationBox {
	clear: both;
	display: flex;
	margin: 20px 10px;
	justify-content: center;
    width: 100%;
}

ul.pagination {
	margin: 0px auto 0px auto;
	padding: 0px 0px 10px 0px;
	position: relative;
	font-size: 80%;
	line-height: 1em;
	list-style-type: none;
}

.pagination li {
	float: left;
	vertical-align: middle;
	background-color: #fff;
	margin-right: 1px;
}

.pagination span,
.pagination a {
	float: left;
	border: 1px #ccc solid;
	padding: 3px 9px 4px 9px;
	text-decoration: none;
	width: auto;
	color: #999;
}

.pagination a:hover,
.pagination a:focus {
	color: #fff;
	background-color: #ccc;
}

.pagination .current{
	padding: 3px 9px 4px 9px;
	color: #fff;
	background-color: #ccc;
	border: 1px #ccc solid;
}

/* --------------------> Single post <-------------------- */

.entry-content {
	margin: 0;
}

.single-content {
	display: flex;
}

#single-content-wrapper {
	max-width: 850px;
}

#side-bar-wrapper {
	margin: 0 0 0 50px;
	width: 100%;
    max-width: 300px;
}

.footer-meta {
	margin: 1em 0;
}

blockquote {
	font-family: var(--headings-bold);
    font-size: 21px;
    color: #5ab3e1;
    padding: 5px 50px 20px 50px;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
    position: relative;
	line-height: 1.1em;
	font-style: italic;
}

blockquote p {
	margin: 0 !important;
	line-height: 1.1em !important;
	font-size: 1em !important;
}

.footer-tags li {
	float: left;
	text-transform: uppercase;
	margin: 1px 1px 0 0;
}

.footer-tags li a:link,
.footer-tags li a:visited,
.footer-tags li.highlight {
	font-size: 0.7em;
	padding: 2px 10px;
	background: #9b9b9b;
	text-decoration: none;
	line-height: 15px;
	color: #fff;
}

.footer-tags li.highlight,
.footer-tags li.highlight {
	background: #333;
	padding: 2px 20px;
}

.footer-tags li a:hover,
.footer-tags li a:focus {
	background: #3399FF;
}

/* RELATED */

h1#recent {
	margin: 0 50px;
    background: rgb(51, 51, 51);
    padding: 5px 15px;
	color:#e6e7e8;
	font-size: 20px;
}

#related {
	margin: 15px 65px 60px 65px;
}


#related-title {
	font-size: 18px;
	margin: 0;
    line-height: 1.2em;
	font-family: var(--headings-mid);
    color: #58595b;
    letter-spacing: 0.2px;
    font-weight: 300;
	text-overflow: ellipsis;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
}

#related ul {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
	-webkit-column-gap: 50px; /* Chrome, Safari, Opera */
	-moz-column-gap: 50px; /* Firefox */
	column-gap: 50px;
}

#related ul li {
	margin: 0 0 15px 0;
}

#related ul li:last-child {
	margin-right: 0;
}

#related ul li a {
	text-decoration: none;
}

#related ul li article {
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}

#related ul li a:hover article,
#related ul li a:focus article {
	background: #eee;
}

#related .theExcerpt {
	margin-top: 1em;
}

/* --------------------> Table <-------------------- */

.wp-block-table {
	overflow-x: initial;
}

.wp-block-table td {
    background-color: #e8e9eb;
    padding: 15px;
    border: 5px #fff solid;
    margin: 0 auto;
    text-align: left;
	line-height: 1.25em;
    font-size: 14px;
}

/* --------------------> Table of Contents <-------------------- */

.toc {
    background-color: #f1f2f2;
    padding: 10px;
}

.toc h2 {
	font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
	margin: 20px 25px 20px 20px;
}

.toc ul {
	margin: 20px 20px 20px 25px;
}

.toc ul li {
    list-style-type: none;
    position: relative;
    margin-bottom: 5px;
}

.toc ul li a {
    font-size: 17px;
    color: #68b4e3;
    text-decoration: none!important;
}

.toc ul li a:hover {
    border-bottom: 2px solid;
}

.toc ul li:before {
    content: "→";
    margin-right: 1em;
    color: #585858;
    left: -30px;
    position: absolute;
}

/* --------------------> Image Attachments <-------------------- */

.image-attachment div.entry-meta {
	float: left;
	font-size: .9em;
}

.image-attachment nav {
	float: right;
	margin: 0 0 1em 0;
	font-size: .9em;
}

.image-attachment .previous-image {
	margin-right: 10px;
}

.image-attachment .next-image {
	margin-left: 10px;
}

.image-attachment .entry-content {
	clear: both;
}

.image-attachment .entry-content .entry-attachment {
	background: #eee;
	margin: 0 0 1em;
	padding: 1em;
	text-align: center;
}

.image-attachment .entry-content .attachment {
	display: block;
	margin: 0 auto;
	text-align: center;
}

/* --------------------> Images <-------------------- */

img	{
	max-width: 100%;
	height: auto;
}

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
#sidebar img,
.wp-caption {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}

img.aligncenter,
.wp-caption.aligncenter {
	margin: 0 auto 1.5em auto;
	max-width: 100%;
	height: auto;
}

.wp-block-image, .wp-block-table figcaption {
	margin: initial;
    padding: 8px 0;
    font-size: 14px;
    font-family: var(--headings-mid);
    color: #000;
}

.wp-block-table figcaption {
    padding: 8px 5px;
}

a img {
	border: none;
}

p img {
	margin-bottom: 1em;
}

img.alignleft,
.wp-caption.alignleft {
	margin-right: 1em;
	margin-bottom: 15px;
	margin-top: 15px;
}

img.alignright,
.wp-caption.alignright {
	margin-left: 1em;
	margin-bottom: 15px;
	margin-top: 15px;
}

img.aligncenter,
.wp-caption.aligncenter {
	margin: 0 auto 1.5em auto;
	height: auto;
}

.wp-caption {
	padding: 10px;
	text-align: center;
	border: 1px #ccc solid;
}

.wp-caption img {
	margin: 0;
}

.wp-caption .wp-caption-text {
	margin: .5em;
	font-size: 80%;
}

.wp-smiley {
	margin: 0;
}

/* --------------------> Forms <-------------------- */

#searchform label {
	display: none;
}

input[type=text],
input#s {
	margin: 0;
	padding:0;
}

textarea {
	width: 80%;
}

/* Class for labelling required form items */

.required {
	color: #cc0033;
}

/* --------------------> Comments <-------------------- */

#comments {
	margin: 0 auto;
    max-width: 1600px;
    padding: 25px 50px 15px 55px;
}

#comments-title {
	text-transform: uppercase;
	font-weight: 100;
	margin-bottom: 2em;
}

#respond {
	border-top: solid 2px rgb(51, 51, 51);
	display: flex;
    justify-content: left;
	gap: 0 25px;
}

#respond h3 {
	font-size: 20px;
}

#reply-title {
	margin: 25px 0 15px 0;
	font-size: 25px;
}

article.comment {
	margin-left: 34.04255319148936%;
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid rgba(230, 230, 230, 1);
	font-size: 14px;
	color: #696969;
}

.comment-footer {
	margin-left: -51.61290322580645%;
	width: 48.38709677419355%;
	float: left;
	font-size: 0.9em;
	line-height: 1.3em;
}

.left-content {
	float: left;
	margin-right: 10px;
}

.comment-author {
	text-transform: uppercase;
	color: #999999;
}

/* Custom style for post author */

.commentlist .children {
	margin-left: 60px;
}

.comment-footer a:link,
.comment-footer a:visited {
	color: #999;
	font-size: 90%;
	text-decoration: none;
}

.comment-footer a:hover,
.comment-footer a:focus {
	color: #333;
}

.comment-footer .reply a:link,
.comment-footer .reply a:visited {
	width: 48px;
	border: 1px #ccc solid;
	display: block;
	text-transform: uppercase;
	font-size: 70%;
	text-align: center;
	padding: 0;
}

.comment-footer .reply a:hover,
.comment-footer .reply a:focus {
	border-color: #999;
}

.comment-footer .children li {
	margin-left: 60px;
}

#commentform {
	margin: 25px 0px 15px 0px;
	padding: 0;
}

#commentform input:focus,
#commentform textarea:focus {
	outline: 1px solid #808080;
}

#commentform label {
	display: inline-block;
	margin-bottom: 0.4em;
	font-size: 90%;
}

#commentform input,
#commentform textarea {
	padding: 5px;
}

.comment-notes {
	margin: 0;
	padding: 0;
	color: #999;
	font-size: 13px;
}

.form-allowed-tags {
	font-size: 80%;
	color: #999;
}

#respond input[type=text] {
	display: block;
}

#respond textarea {
	display: block;
	margin: 0 0 1em;
}

#respond .form-allowed-tags {
	clear: both;
}

#respond .form-allowed-tags code {
	display: block;
}

#commentform input#submit {
	margin: 1em 0 0 0;
	border: 1px solid #ccc;
	color: #999;
	padding: 3px 2em;
	background: #fff;
	font-size: 70%;
	text-transform: uppercase;
}

#commentform input#submit:hover,
#commentform input#submit:focus {
	border-color: #999;
	color: #333;
	cursor: pointer;
}

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

/* --------------------> Widgets <-------------------- */

.widget {
	display: block;
}

#sidebar .widget_search {
	overflow: hidden;
}

#sidebar .widget_search input {
	float: left;
}

#contact-widget {
    max-width: 1200px;
    margin: 0 auto;
}

#contact-widget-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
	margin: 0 50px 50px 50px;
}

.contact-widget-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0;
    min-width: 232px;
	background: #f1f2f2;
    padding: 50px 50px;
}

.contact-widget-block h2 {
    font-family: var(--headings-bold);
    font-size: 17px;
    color: #58595b;
    line-height: 1.1em;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-widget-block p {
	font-size: 14px;
    color: #58595b;
}

#contact-widget-footer-call {
	align-self: flex-start;
	text-align: left;
	margin: 5px 0 0 0;
}

#contact-widget-button {
	align-self: flex-start;
    padding: 5px 0 0 0;
}

#contact-widget-button a, #contact-widget-button a:link, #contact-widget-button a:visited {
	font-family: var(--headings-bold);
	color: #68b4e3;
    text-decoration: none;
    font-size: 17px;
    line-height: 1em;
    letter-spacing: 0.5px;
    padding: 0;
    margin: 0 auto;
}

#contact-widget-button a:hover {
	text-decoration: underline;
}

/* --------------------> Footer Links <-------------------- */

.footer-links {
	background-color: #e6e7e8;
    display: flex;
    justify-content: center;
}

.footer-links-wrapper {
	display: flex;
    padding: 100px 30px;
    justify-content: space-between;
    max-width: 1100px;
    flex: 1;
	flex-wrap: wrap;
    gap: 50px;
	white-space: nowrap;
}

.footer-links-element h4 {
	font-family: var(--headings-bold);
	font-size: 15px;
    color: #333333;
    line-height: 1.1em;
    margin: 0 0 15px 0;
    letter-spacing: 0.2px;
}

.footer-links-list ul li {
	font-size: 13px;
	margin: 0 0 12px 0;
}

.footer-links-list a:link, .footer-links-list a:visited {
	text-decoration: none;
}

.footer-links-list a:hover {
	color:#999;
}

.footer-links-list {
	display: flex;
    gap: 30px;
}

.footer-links-element-social ul {
	display: flex;
    flex: 1 0;
    flex-wrap: wrap;
    max-width: 180px;
    gap: 10px;
}

#footer-search {
	margin-top: 40px;
}

#footer-search h4 {
	margin: 0 0 10px 0;
}

/* --------------------> Footer <-------------------- */

#footer-wrapper {
	clear: both;
	display: block;
	width: 100%;
	padding: 0;
	background: #333;
	color: #CCCCCC;
	font-size: 0.9em;
}

#footer-phone a {
	color: #ccc;
	text-decoration:none;
}



#footer-sidebar ul {
	padding: 50px;
}

#footer-sidebar ul li {
	width: 23.40425531914894%;
	float: left;
	margin-right: 2.127659574468085%;
}

#footer-sidebar ul li:last-child {
	margin-right: 0;
}

#footer-sidebar ul ul,
#footer-sidebar ul ul li {
	margin: 0;
	padding: 0;
	float: none;
	width: 100%;
}

#footer-sidebar .widget-title {
	font-size: 1.5em;
	font-weight: 100;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 1.3em;
	word-wrap: break-word;
}

#footer-sidebar ul ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 0;
	font-size: 90%;
	line-height: 1.3em;
}

#footer-sidebar ul ul li a:hover,
#footer-sidebar ul ul li a:focus {
	background-color: #666666;
	text-decoration: none;
	padding: 10px;
}

#site-generator p {
	font-size: 11px;
	margin: 30px 0 0 0;
	text-transform: uppercase;
	line-height: 0.6em;

}

#site-generator a:link, #site-generator a:visited {
	color: #CCCCCC;
	text-decoration: underline;
}

#site-generator a:hover {
	color: #FFF;
}

#footer-content {
	margin: 0;
	padding: 40px 15px;
	background: none;
	text-align: center;
}

.footer-content-element p { 
	text-align: center;
	margin: 0 0 0 0;
}

#footer-helpful-links {
	display: flex;
    justify-content: center;
    gap: 7px 28px;
    margin: 0 15px 25px 15px;
    flex-wrap: wrap;
}

#footer-helpful-links a:link, #footer-helpful-links a:visited  {
	color: #cbcbcb;
    text-decoration: none;
    font-family: var(--headings-mid);
    font-size: 14px;
	white-space: nowrap;
	letter-spacing: 0.2px;
}

#footer-helpful-links a:hover  {
	color: #fff;
}

#footer-hours {
	font-size: 15px;
    letter-spacing: 0.3px;
}

#footer-phone {
	margin: 5px 0 4px 0;	
}

#footer-phone a:link, #footer-phone a:visited {
	font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

#footer-reviews {
	margin-top: 15px;
    line-height: 22px;
}

#footer-copy-rights p {
	font-size: 0.9em;
	margin: 15px 0 0 0;
}

#site-generator p {
	font-size: 11px;
	margin: 25px 0 0 0;
	text-transform: uppercase;
	line-height: 0.6em;
}

/* --------------------> Media Queries/ <-------------------- */

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

	#header-container {
		padding: 60px 25px 15px 25px;
	}

	#hero-location-page-title {
    	padding: 25px 25px 0 25px;
	}

	#hero-location-page-extension-wrapper {
		padding: 0 25px;
	}
	
	#breadcrumb-wrapper {
   		padding: 0 25px 25px 25px;
	}

	.entry-title {
		margin: 0px;
	}
	
	#consumer-awareness {
		padding: 75px 25px 65px 25px;
	}
	

	#location-page-content-container {
    	padding: 75px 25px;
		gap: 75px;
	}

	.location-page-section-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	
	.location-page-section-content-order {
    	order: initial;
	}

	#reviews-home-page-links-wrapper {
		padding: 95px 25px 115px 25px;
		margin: 0;
	}

	#contact-us-loaction-page {
		padding: 100px 25px;
	}

	#contact-us-loaction-page-container {
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 40px;
	}
	
	.sales-page {
    	padding: 0 25px 50px 25px;
	}

	.footer-links-wrapper {
		justify-content: space-evenly;
		gap: 50px 75px;
	}

	.footer-links-element {
    	width: 40%;
	}

	.footer-links-element-social ul {
    	gap: 15px;
	}

	#footer-sidebar ul	{
		padding: 0;
	}

	#related {
		padding: 0;
		margin: 15px 25px 50px 25px	
	}

	#regular-index .index-post-container {
    	margin: 0 25px 75px 25px;
	}
	.content-wrapper {
		margin: 0;
	}

	#content-container {
		margin: 0;
		padding: 0;
	}

	#search-content {
    	margin: 0 25px;
	}
	
	.post-container {
		padding: 0 25px;
	}

	#comments {
    	margin: 25px;
		padding: 0px;
	}

	h1#recent {
		margin: 20px;
	}

	#sidebar {
    	margin: 0;
	}

	#side-bar-wrapper {
    	margin: 0 0 0 30px;
    	width: 100%;
    	max-width: 200px;
	}

	#sideNav {
		padding: 50px 0 0 0;
		width:100%;
    	margin:0 auto;
	}

	.service-main {
    	padding: 35px 25px 50px 25px;
	}

/* --------> Sales Page <-------- */

	#sales-page {
    	padding: 0 25px 50px 25px;
    	margin: 0 auto;
	}

	#sales-page-gallery {
    	padding: 65px 25px 50px 25px;
	}

	.#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item a {
		margin-right: 25px !important;
    	margin-bottom: 25px !important;
	}

	#services-location-info-wrapper {
		padding: 65px 25px 50px 50px;
	}

	#contact-widget-wrapper {
		margin: 0 25px 50px 25px;
	}

	#service-area-map {
		padding: 65px 25px 30px 25px;
	}

	#parts-page-banner-content {
    	transform: translate(45%, 0%);
    	margin: 0 50px 0 0;
	}

	#openers-page-banner {
		background-position-x: 35%;
	}
	
	#openers-page-banner-title {
    	padding: 0 25px 75px 0;
    	margin: 0 0 0 285px;
	}

	.coupons-page-content h3 {
    	font-size: 18px;
	}

	.about-us-page-element {
		padding:0 25px;
	}
	
	#service-single-faq {
    	padding: 50px 25px;
	}
	
	#why-us-location-page {
		padding: 95px 25px;
		margin: 0;
	}


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

	/* Image Settings for mobile */
	img.alignright {
		float: none;
    	display: block;
    	margin: 0 auto;
    	padding: 15px 0;
	}
	
	#footer-sidebar ul	{
		padding: 0;
	}

	#related {
		padding: 0;
		margin: 15px 15px 50px 15px;
	}

	#content-container {
		margin: 0;
		padding: 0;
	}

	/* --------> Header Mobile <-------- */
	
	#header-container {
		display: flex;
    	padding: 0;
	}

	.header-logo-desktop, #header-call-now, .header-note-element {
		display: none;
	}

	#header-mobile {
		display: flex;
		order: 2;
    	align-items: center;
    	width: 100%;
	}
	
	.header-logo-mobile {
		display: flex;
    	align-items: center;
    	width: 100%;
   		padding: 15px 25px 10px 25px;
    	min-height: 38px;
    	text-align: center;
    	justify-content: center;
    	margin-right: 62px;
	}
	
	.header-phone-number-element {
		display: flex;
    	text-align: center;
    	padding: 15px;
	}
	
	.header-phone-number-element a {
    	display: flex;
    	background: #68b4e3;
    	justify-content: center;
    	align-items: center;
    	gap: 10px;
    	border-radius: 50%;
    	height: 34px;
    	width: 34px;
	}

	#header-phone-icon {
		display: inline-block;
	}
	
	#header-phone-number {
		display: none;
	}

	#header-search {
		padding: 0 0 0 15px;
		flex: 1 0 auto;
	}

	#hero-location-page-title {
    	padding: 25px 15px 0 15px;
	}

	#hero-location-page-title h1 {
		font-size: 30px;
	}

	#hero-location-page-title h2 {
		font-size: 24px;
		margin: 5px 0 0 0;
	}

	#hero-location-page-sub-title-wrapper {
    	justify-content: center;
		margin: 20px 0;
	}

	#hero-location-page-sub-title {
    	gap: 20px 5%;
	   	margin: 0;
    	width: auto;
    	flex-wrap: wrap;
		justify-content: space-evenly;
	}

	#hero-location-page-sub-title-reviews {
		display: flex;
		order: 1;
	}
	
	#hero-location-page-sub-title-contact-wrapper {
    	order: 3;
    	margin: 0 auto;
	}
	
	#hero-location-page-sub-title-phone a, #hero-location-page-sub-title-contact a {
		width: 240px;
	}

	#hero-location-page-offer {
		display: flex;
		order: 2;
		max-width: 160px;
	}

	#hero-location-page-offer p {
		padding: 4px 10px 2px 10px;
		line-height: 16px;
	}

	#hero-location-page-extension-wrapper {
		padding: 0 15px;
	}

	.hero-location-page-extension-element {
		flex: 1 1 42%;
	}

	#breadcrumb-wrapper {
		padding: 0 15px 20px 15px;
	}

	#services-location-page {
		flex-direction: column;
	}

	#services-location-cover {
		margin: -25px 0 -25px 0;
		padding: 0 0 0 25px;
		min-width: initial;
	}

	#services-location-info-wrapper {
		padding: 45px 25px 75px 25px;
    	margin: -70px 0 0 0;
    	background-color: #fff;
		min-width: initial;
	}
	
	#location-page-content-container {
    	padding: 60px 15px;
		gap: 60px;
	}

	.location-page-section-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.location-page-section-content-order {
    	order: initial;
	}

	#reviews-home-page-links-wrapper {
    	padding: 95px 15px 75px 15px;
	}

	#reviews-home-page-links-subheading {
    	padding: 25px 0 55px 0;
	}

	#reviews-home-page-links {
		gap: 50px;
    	flex-direction: column;
    	text-align: center;
	}
	
	#consumer-awareness {
    	padding: 75px 15px 65px 15px;
	}
	
	#consumer-awareness-content-wrapper {
		flex-direction: column;
	}

	#contact-us-loaction-page {
		padding: 100px 15px;

	}

	#contact-us-loaction-page-container {
		flex-wrap: wrap;
    	gap: 35px;
		justify-content: center;
	}

	.footer-links-wrapper {
		flex-direction: column;
		gap: 45px;
	}

	.footer-links-element-social ul {
    	gap: 15px;
	}

	.footer-links-list {
    	gap: 20px;
	}

	blockquote {
    	padding: 5px 25px 20px 25px
	}
	
	#sub-access ul ul {
		left: 0px;
	}
	
	.content-wrapper {
    	display: block;
		margin: 0px;
	}

	#search-content {
    	margin: 0 5px;
	}

	#regular-index .index-post-container {
    	margin: 0 0 75px 0;
	}
	
	.post-container {
    	margin: 0 0 0 0; 
		padding: 0;
  	}

	#comments {
		padding: 0 10px;
	}

	h1#recent {
		margin: 10px;
		padding: 5px 5px;
	}
	
	.page-header {
   		margin: 0px;
	}

	#regular-index .index-content {
    	margin: 0 10px;
	}

	.index-content {
    	margin: 10px;
	}

	.index-name-date,
	#regular-index .index-title {
		margin: 0;
	}

	#respond {
    	display: block;
	}

	#commentform {
    	margin: 25px 0 50px 0;
    	padding: 0;
	}
	
	.index-header {
		margin: 0 10px;
	}

	.index-title {
    	font-size: 22px;
    	font-weight: 100;
    	margin: 20px 0px;
    	line-height: 1.3em;
    	word-wrap: break-word;
	}

	.index-meta {
		margin: 10px 0 10px 0;
	}

	.entry-header {
    	margin: 0 10px 20px 10px;
		padding: 0;
	}

	.entry-title {
    	font-size: 28px;
		margin: 10px 0 0 0;
	}	

	.entry-content {
    	margin: 0 15px 20px 15px;
		padding: 0;
	}

	.single-content {
		display: block;
	}

	img.aligncenter,
	.wp-caption.aligncenter {	
		width: auto !important;
	}

	/* ----- Side Bar -----*/
	
	#regular-index {
		float: none;
	}

	#regular-content {
		display: block;
		margin: 0;
	}

	#side-bar-wrapper {
		margin: 0;
		width: 100%;
	}

	#sidebar {
		display: block;
		overflow: initial;
		float: initial;
		width: initial;
		margin: 0;
	}

	/* Change widgets to stack one on top of the other */

	#sidebar .widget {
		width: initial;
		border: none;
		float: initial;
		padding: 0 10px 50px 0px;
		margin: 0;
	}

	#sidebar .widget ul {
		padding: 0;
	}

	#sidebar .widget-title {
		padding: 0 0 0 0;
	}

	#sidebar ul li a:hover,
	#sidebar ul li a:focus {
		background-color: #fff;
	}
	
	#footer-sidebar ul li,
	#related ul li {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 15px;
	}

	#related ul {
		column-count: initial;
	}

	#related-title {
		text-overflow: initial;
		max-width: initial;
		white-space: initial;
		overflow: initial;
	}

	/* ----- End Of Side Bar -----*/

	#sideNav {
		padding: 50px 0 0 0;
    	margin:0 auto;
		width:100%;
	}

	#contact-widget-wrapper {
	    margin: 0 15px 50px 15px;
	}

	/* --------> Sales Page <-------- */

	.sales-page {
    	padding: 15px 15px 50px 15px;
	}

	.sales-page-items-wrapper {
    	gap: 15px;
    	flex-direction: column;
	}	

	.sales-page-item.sales-page-item-img.sales-page-item-img-order-2 {
    	order: initial;
	}

	.sales-page-block-wrapper {	
    	gap: 35px;
	}

	#sales-page-callouts-wrapper {
		margin: 75px auto 85px auto;
    	gap: 50px;
    	flex-direction: column;
    	align-content: center;
	}

	#sales-page-gallery {
    	padding: 65px 10px 60px 10px;
	}

	#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item a {
		margin-right: 0 !important;
    	margin-bottom: 25px !important;
	}

	#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails .bwg-item {
    	width: 100% !important;
	}

	#bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-album-thumbnails {
    	justify-content: center !important;
		max-width: 100% !important;
	}

	#sales-page-gallery-buy-direct-wrapper {
    	gap: 10px;
    	padding: 35px 10px 50px 10px;
    	flex-direction: column;
    	align-items: center;
	}

	#sales-page-gallery-buy-direct h3 {
    	margin: 10px 0 7px 0;
	}

	.sales-page.sales-page-block-top-margin {
		margin: 50px auto 0 auto;
	}

	#service-area-map {
		padding: 100px 15px 40px 15px;
		text-align: center;
		margin: 0 auto;
	}

	#service-area-map-container {
    	display: block;
	}

	#service-area-map-content {
		text-align: center;
    	margin: 0 auto 60px auto;
	}

	#service-area-map-wrapper {
    	margin: 0 auto;
	}

	#parts-page-banner-wrapper {
    	flex-direction: column;
	}

	#parts-page-banner-content {
    	position: initial;
    	transform: initial;
    	margin: 0 auto;
    	padding: 55px 20px 75px 20px;
	}

	.service-main {
		padding: 35px 15px 50px 15px;
	}

	.coupons-page-wrapper {
    	flex-direction: column;
	}

	.coupons-page-container {
    	min-width: initial;

	}

	.coupons-page-content h3 {
    	font-size: 18px;
	}

	#openers-page-banner {
    	background-position-x: 15%;
		margin: 0;
	}

	#openers-page-banner-title {
    	padding: 30px 0 0 20px;
    	margin: 0 0 0 0;
	}

	#openers-page-banner-title h2 {
    	padding: 40px 0 20px 0;
		font-size: 3em;
	}

	#openers-page-banner-title p {
		color: #7a7a7a;
    	padding: 0 0 25px 0;
    	max-width: 283px;
	}

	#openers-page-banner-images {
    	flex-direction: column;
    	align-items: flex-start;
		padding: 30px 20px 70px 0;
	}

	#openers-page-banner-images figure {
    	width: 100%;
    	flex: 1 0 auto;
    	text-align: left;
	}

	.service-single-element {
		flex-direction: column;
	}

	.service-single-info {
		flex-wrap: wrap;
		margin: 60px 20px 65px 20px;
	}
	
	#service-single-faq {
    	padding: 50px 15px;
	}

	.order-2 {
    	order: initial;

	}

	p {
    	line-height: 1.5em;
		font-size: 15px;
	}

	#location-page-reviews {
		padding: 75px 25px 0 25px;
	}

	#products-navigation-title h2 {
    	max-width: 370px;
	}

	#contact-us-assets {
		gap: 95px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.about-us-page-element {
		padding:0 15px;
		flex-direction: column;
	}

	.about-us-page-element-block {
    	gap: 50px;
	}
	
	#faqs-page {
    	padding: 0 25px 75px 25px;
	}
	
	#why-us-location-page {
		padding: 75px 15px;
		margin: 0;
	}
	
	#why-us-location-page-wrapper {
		flex-direction: column;
		gap: 25px;
	}
	
	#why-us-location-page-content {
		order: 2;
	}

}