/*
Theme Name: LA Bexten
Theme URI: https//consumerfocusmarketing.com/
Author: Consumer Focus Marketing
Author URI: https//consumerfocusmarketing.com/
Description: Starter theme for Consumer Focus Marketing 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Portfolio, Oil, Blog
Text Domain: #
*/

:root {
  /* Colors - Neutrals */
  --white: #fff;
  --almost-white: #EDEDED;

  --gray: #efefef;
  --lightest-grey: #D3D3D3;
  --light-grey: #646464;
  --dark-grey: #444444;
  --deep-grey: #222222;

  --body: #000;
  --black: #000;

  --light-yellow: #FFF9A9;
  --yellow: #F1E100;

  /* Semantic colors */
  --body-text-color: var(--body);
  --headline: var(--black);
  --link: #746C14;
  --link-hover: var(--black);

  /* Typography */
  --font-body: "Work Sans", sans-serif;
  --font-headline: "Libre Baskerville", serif;
  --font-size-base: 1rem;
  --line-height-base: 1.625rem;

  /* Spacing */
  --spacing-small: 0.625rem;
  --spacing-medium: 1rem;
  --spacing-large: 1.8rem;

  /* Border radius */
  --border-radius: 1.438rem;

  /* image overlays */
  
  --image-overlay: rgba(0, 0, 0, 0.8);
  --image-overlay-blue: rgba(2, 14, 70, 0.8);
  --image-overlay-callout: rgba(35, 31, 32, 0.8);
  --image-overlay-yellow: rgba(255, 208, 10, 0.62);
}

html {
  font-size: calc(10px + 0.5vw);
}

body {
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  overflow-x: hidden;
  color: var(--body-text-color);
  margin: 0;
  line-height: var(--line-height-base);
}

@media (max-width: 767px) {
  body *:not(h1, h2, h3, h4, small, svg *),
  body .btn {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
  transition: all 0.2s linear;
}

@media (max-width: 767.9px) {
  .desktop-only {
    display: none;
  }
}
.wrapper {
  padding: 2rem 15px 4rem;
}

img {
  max-width: 100%;
  height: auto;
}
 img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
h1,
h2,
h3,
h4,
.h2-span {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--headline);
  line-height: 1.2;
}

h1 {
  font-size: 2.9rem;
  font-family: "Libre Baskerville", serif;
  color: var(--yellow);
}

h2, .h2-span {
  font-size: 2.188rem;
    font-family: "Cabin", sans-serif;
}

h3 {
  font-size: 1.875rem;
    font-family: "Libre Baskerville", serif;
}

h4 {
  font-size: 1.375rem;
   font-family: "Work Sans", sans-serif;
}

p {
  padding: 0;
}

a:not(.btn) {
  text-decoration: none;
  color: var(--link);
  cursor: pointer;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.top-site-banner {
	background-color: var(--yellow);
	padding: 1rem 0;
	color: var(--black) !important;
}
.top-site-banner p {
	margin-bottom: 0.15rem;
}
/* a.btn[href^="tel:"] {
white-space: nowrap;
width: 100%;
padding-left: initial;
padding-right: initial;
} */
.container:not(.main-menu .container) {
  min-width: 95vw;
}

hr {
  border-top: 1px solid var();
  margin: 1.875rem auto;
  width: 100%;
}

/*** Buttons ***/
button:hover {
  cursor: pointer;
}

.btn,
.gform_button {
  padding: var(--spacing-small) var(--spacing-large);
  margin: var(--spacing-medium) var(--spacing-medium) var(--spacing-medium) 0;
  text-decoration: none;
  font-family: var(--font-body);
  display: inline-block;
  white-space: pre-wrap;
  font-size: 1.22rem !important;
  font-weight: normal;
  border-radius: var(--border-radius) !important;
  text-transform: uppercase !important;
  text-align: center;

}

.btn:hover,
.gform_button:hover {
  transition: all 0.2s ease 0s !important;
  text-decoration: none !important;
}

.btn-primary,
.gform_button {
  background: var(--light-grey) !important;
  color: var(--white) !important;
}

.btn-primary:hover,
.gform_button:hover {
  background: var(--deep-grey) !important;
  color: var(--white) !important;
}

.btn-primary:active,
.gform_button:active {
  color: var(--yellow) !important;
}

.btn-default {
  background-color: var(--gray);
  color: var(--deep-grey);
}
.btn-default:hover {
  background-color: var(--light-yellow);
  color: var(--dark-grey);
}
.btn-default:active {
  background-color: var(--yellow);
  color: var(--dark-grey);
}

.btn-alt {
  background: var(--deep-grey) !important;
  color: var(--yellow) !important;
}
.btn-alt:hover {
  background: var(--dark-grey) !important;
  color: var(--light-yellow) !important;
}
.btn-alt:active {
  background: var(--black) !important;
  color: var(--white) !important;
}

.callout .btn,
.well .btn,
.coupon .btn {
  margin-right: 1rem;
}
header a.btn.btn-alt{
	font-weight:600 !important;
}
@media (max-width: 767px) {
  .btn,
  .gform_button {
    display: block !important;
    font-size: 1.65rem !important;
    margin: 0.75rem auto;
	  width:100%;
  }
}

/*** GENERAL ***/
.yellow {
  color: var();
}
.gray-bkg {
  background: var(--gray-light);
}

.white-bkg {
  background: var();
}

/*** HEADER ***/
.top-header a[href^="tel:"] {
  text-decoration: none;
	font-family: var(--font-body);
	letter-spacing:1px;
}
.top-header {
  background-color: var(--light-yellow);
  padding: 0.625rem 0;
}
.top-header .phone {
  font-size: 1.125rem;
}
.top-header .header-logo {
  display: flex;
  align-items: center;
}
.top-header .header-logo img {
  max-width: 320px;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-contact .phone-icon {
  width: 35px;
  height: auto;
  flex-shrink: 0;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}


@media (max-width: 767.98px) {
  .header-right {
    display: none;
  }

  .navbar-toggler {
    margin-left: auto;
  }
	.top-header .header-logo {
		justify-content: center;
	}
}



/*** NAV MENU ***/

/*** NAV BAR ***/


.main-menu {
  font-weight: 500;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.main-menu .navbar-collapse {
  justify-content: flex-end;
}

.main-menu .nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: normal;
  justify-content: space-between;
  color: var(--black);
}

@media (max-width: 767px) {
  .main-menu .nav-link {
	  font-size: 1.25rem;
  }
	#menu-menu {
		margin-top: 1.5rem;
	}
}

.nav-item {
  margin-bottom: 0;
}

.main-menu .nav-link:hover {
  color: var(--link);
}

.dropdown-item {
  font-weight: 500;
  color: initial;
  color: var(--black) !important;
}
.dropdown-item:hover {
  color: var(--link) !important;
}


.submenu-two {
  width: 100%;
}

.third-level .dropdown-item {
  white-space: pre-wrap;
  line-height: normal;
}

.nav-link {
  display: flex;
  align-items: center;
}

.nav-link img {
  margin-right: 0.25rem;
}
@media (min-width: 768px) {
	nav.navbar.main-menu .container { 
margin-right: 0;	
}
}
@media (max-width: 790px) {
  .nav-link img {
    width: 20px;
  }
}

@media (min-width:768px) and (max-width:991px){
	nav.navbar.main-menu .container {
    max-width: 90%;
	}
}

@media(min-width:992px){
	.navbar-expand-md .navbar-nav .nav-link{
		padding-right:.75rem;
		padding-left:.75rem;
	}
}

/*** MENU - BASE STYLES ***/

/* show dropdown menus on hover */
.dropdown:hover > .dropdown-menu {
  display: block;
	
}
.dropdown:hover > .dropdown-menu .dropdown-menu {
border: 1px solid var();	
}
.dropdown-item {
  text-align: left;
  padding: 0.5rem 1.5rem;
}

/* removes the deadzone click area */
.dropdown-menu {
  margin: 0;
  border: 0;
  border-radius: 0;
  left: auto;
  right: 0;
  margin: 0 auto;
  background: var();
}

.dropdown-menu .submenu-two {
  width: 100%;
}
.top-level .nav-link:hover {
  color: var();
  text-decoration: underline;
}
.nav-link:hover,
.nav-item:hover {
  color: var();
  text-decoration: underline;
}

.nav-item.active > a {
  text-decoration: none;
  color: var();
}

.dropdown-item:hover {
  background-color: var();
  color: var();
  text-decoration: underline;
}

.navbar-toggler {

}

/* hides carets */
/* .dropdown-toggle::after {
  display: none;
} */

/*** MENU - TOP LEVEL ***/

/*** MENU - THIRD LEVEL MENU DROPDOWNS ***/

.second-level {
  position: relative;
}

.second-level > .dropdown-menu {
  top: 0;
  left: 100%;
}

@media (min-width: 768px) {
  .second-level > .dropdown-menu {
    margin-top: -0.5rem;
  }

  .second-level.menu-item-has-children > a:after {
    display: block;
    content: "▸";
    float: right;
    margin-right: -20px;
  }

  .second-level:hover > a:after {
    border-left-color: inherit;
  }

  .menu-item-has-children > .dropdown-item {
    padding: 0.5rem 2.25rem 0.5rem 1.5rem;
  }
}
@media (max-width: 767.9px) {
  .third-level .dropdown-item {
    padding-left: 40px;
    font-size: 1.2rem;
  }

  .second-level.menu-item-has-children .dropdown-item::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.5em solid;
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
  }

  .third-level a.dropdown-item::after {
    display: none !important;
  }

  .third-level .dropdown-item:before {
    position: absolute;
    content: "»";
    left: 0;
    margin-left: 1rem;
  }

  .third-level .dropdown-item {
    padding-left: 2rem;
    margin-left: 0.5rem;
  }
  .third-level .dropdown-menu .nav-item {
    padding-bottom: 0;
  }

  .dropdown-item:not(.third-level .dropdown-item) {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .third-level .dropdown-item:before {
    position: absolute;
    content: "»";
    left: 0;
    margin-left: 2rem;
  }

  .submenu-two .dropdown-item {
    padding-left: 2rem;
    margin-left: 1rem;
    font-size: 1.5rem;
  }

  .submenu-two .dropdown-menu .nav-item {
    padding-bottom: 0;
  }

  .top-level.nav-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid;
    padding-bottom: 1rem;
  }

  .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .dropdown-toggle:after {
/*     margin-left: auto; */
	  margin-left: 1.5rem;
    margin-right: 1.5rem;
   background: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'><path d='M2 2l10 10L22 2' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    border: 0;
  }
}
.dropdown-toggle:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin-left: .255em;
    margin-right: .255rem;
    background: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'><path d='M2 2l10 10L22 2' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    border: 0;
}
/*** Home  ***/

/* Banner */
.home-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 10rem;
  position: relative;
  color: var(--white);
}

.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--image-overlay-callout);
  z-index: 0;
}

.home-banner .container {
  position: relative;
  z-index: 1;
}

.home-banner h1 {
  color: var(--yellow);
}

.home-banner p {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-headline);
	line-height:1.5;
}

.home-banner .btn {
  margin-top: 0.5rem;
	background-color:var(--almost-white) !important;
	color:var(--black) !important;
}

/* Services */
.home-services {
  padding: 0 0 3rem;
  margin-top: -5rem;
  position: relative;
  z-index: 1;
}

.service-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--almost-white);
  text-align:center;
  padding-top:1.5rem;
}

.service-left > img {
  width:220px;
  max-width: 65%;
  height: auto;
  display: block;
  margin: 2rem auto 1rem;
	
}

.service-left-content {
  padding: 0 2rem 1rem;
  flex-grow: 1;
}

.left-links {
  display: flex;
  background: var(--dark-grey);
  margin-top: auto;
  border-radius: 0 0 24px 24px;
}

.left-links a {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  font-weight: normal;
  text-decoration: none;
  color: var(--white);
  border-right: 1px solid var(--black);
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.left-links a:last-child {
  border-right: none;
}

.left-links a:hover {
  background: var(--light-grey);
  text-decoration: none;
  color: var(--white);
}

.service-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media(max-width:991px){
	.service-right {
		margin-top:1.5rem;
	}
}
.service-card {
  background: var(--almost-white);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.service-card img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

@media(min-width:992px){
	.service-card img{
		width:110px;
	}
	.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
}



.service-card p {
  margin: 0;
}



/* Service Area */
.home-service-area {
  padding: 3rem 0;
  background: var(--almost-white);
	border-top:5px solid var(--yellow);
	border-bottom:5px solid var(--yellow);
}

.home-service-area img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

ul.servicearea{
	columns:3;
	font-size: .8rem;
	line-height:1;
}

@media(max-width:768px){
	ul.servicearea{
		columns:2;
	}
}

/* For Your Home */
.home-fyh {
  padding: 3rem 1rem;
}

.home-fyh .row {
  background: var(--almost-white);
  border-radius: 24px;
  overflow: hidden;
  align-items: stretch;
}

.home-fyh .col-md-6:first-child {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-fyh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
	.home-fyh .btn {
		max-width: fit-content;
	}
}
@media (max-width: 767.98px) {
/*   .home-banner {
    padding: 2.5rem 0 3rem;
  }
 */
  .home-services {
    margin-top: 0;
    padding-top: 2rem;
  }

  .home-services .col-md-6 {
    margin-bottom: 1.5rem;
  }

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

  .service-right {
    gap: 1rem;
  }

  .left-links {
    flex-direction: column;
  }

  .left-links a {
    border-right: none;
    border-bottom: 1px solid var(--light-grey);
	  font-size:1.55rem;
  }

  .left-links a:last-child {
    border-bottom: none;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .home-service-area {
    padding: 2rem 0;
  }

  .home-service-area img {
    margin-bottom: 1.5rem;
  }

  .home-fyh {
    padding: 2rem 0;
  }

  .home-fyh .col-md-6:first-child {
    padding: 1.5rem;
  }

  .home-fyh img {
    min-height: 250px;
    border-radius: 0 0 24px 24px;
  }

  .footer-contact-row .col-md-auto {
    margin: 0.75rem 0;
  }
}


/*** Footer ***/
footer {
  background: var(--deep-grey);
  color: var(--white);
  padding: 3rem 0;
}

footer .footer-logo img {
  max-width: 300px;
  height: auto;
}

footer a,
footer a[href^="tel:"] {
  color: var(--white) !important;
  text-decoration: none;
}

footer a:hover {
  color: var(--yellow);
}

.footer-contact-row {
  justify-content: space-evenly;
  margin: 2rem 0;
  padding: 2rem 0;
  align-items: stretch;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact-item img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-contact-item img[alt="Location"] {
  width: 100px;
  height: 100px;
}

.footer-contact-item strong {
  display: block;
  font-size: 1.25rem;
  font-family: "Libre Baskerville", serif;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}
.footer-contact-item strong a{
	color: var(--yellow) !important;
}

.footer-contact-item p {
  margin: 0;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 2rem;
  align-items: center;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-links a {
  margin-right: 1.5rem;
  font-weight: 600;
}



.footer-social a {
  display: inline-block;
}

.footer-social img {
  width: 45px;
  height: 45px;
  filter: none;
}


/*** ACCORDIONS ***/
.accordion {
  margin: 2.75rem 0;
}

/* Accordion Group */
.accordion-group {
  margin-top: 1.875rem;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Panel Title */
.panel-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem 0.5rem;
  font-family: var(--font-headline);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px dashed var(--black);
  color: var(--dark-grey);
}
.panel-title h3 {
  color: var(--dark-grey);
}
.panel-title.collapsed,.panel-title.collapsed h3  {
  color: var(--black);
}

/* Panel Title Text */
.panel-title h3 {
  margin: 0;
	font-size:1.3rem;
}

/* Panel Content */
.panel-content {
  padding: 0.85rem 1.25rem 1.25rem;
}

/* Plus/Minus Icon */
.panel-title::after,
.panel-title.collapsed::after {
  content: "-";
  background-color: var(--deep-grey);
  color: var(--yellow);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  line-height: normal;
  padding-bottom: 0.15rem;
	flex: none;
	margin-left: 1rem;
}

.panel-title.collapsed::after {
  content: "+";
}

/*** BLOG - SIDEBAR ***/

.blog-sidebar {
  background-color: var(--);
  padding: 2rem;
  color: var(--);
}

.blog-sidebar h3 {
  color: var(--);
}

.blog-sidebar a:not(.blog-btn) {
  color: var(--);
}

.blog-sidebar .blog-btn:hover {
  border-color: var(--);
  background: var(--);
}

.blog-sidebar a:hover {
  color: var(--);
}

.post-content aside .btn-primary {
  display: block;
  margin-top: 2rem;
}

.post-content aside .btn-primary:hover {
  color: var(--);
}

.blog-title {
  transition-property: background-color, border-color, box-shadow, color,
    opacity, text-shadow, transform;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

.blog-title.bkg-img:hover::before,
.blog-title.bkg-color:hover {
  background: rgba(39, 37, 96, 0.6);
}

.blog-sidebar h3 {
  font-size: x-large;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
}

.post-links,
.category-links {
  padding-left: 1em;
}

.sidebar-links li {
  line-height: normal;
}

.blog-btn {
  font-size: medium;
  padding: 0.5rem;
}

/*** BLOG - POSTS ***/

.post-image {
  height: 250px;
}

.post-meta:not(article .post-meta) {
  font-size: 85%;
  font-style: italic;
  margin-bottom: 3rem;
  line-height: normal;
}
.blog-post {
    background: var();
    padding: 1rem;
}
/*** BLOG - INDEX ***/

.blog-article {
  margin-bottom: 3rem;
}

.blog-content {
  background: var(--);
}

.blog-article .blog-link {
  text-decoration: underline;
  font-weight: 700;
}

.blog-article .blog-link:hover {
  text-decoration: none;
  color: var(--);
}

.blog-content {
  padding: 2.313rem;
  background: var(--);
}

article h2 {
  font-size: 1.875rem;
}

article .post-link {
  font-family: var(--font-headline);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--);
  padding: 0.5rem 0;
  display: block;
}

article .post-link:hover {
  color: var(--);
}

article .post-meta {
  font-size: small;
  font-style: italic;
}

aside {
  background: var(--);
}

aside ul {
  padding-left: 1rem;
  line-height: normal;
}

li.categories {
  list-style: none;
}

.categories h3 {
  padding-bottom: 0.5rem;
}

aside .well {
  margin-bottom: 0;
}

li.cat-item {
  font-weight: 700;
}

/*** BLOG -- HOME ***/

.blog-home .blog-content a {
  text-decoration: underline;
}

.blog-home .blog-content a:hover {
  text-decoration: unset;
}

.blog-home .blog-content p:first-of-type {
  margin: 0;
}

/**** TABLES ****/

table {
  width: 100%;
  margin: 0 0 1rem;
  font-size: 1rem;
}

th {
  font-size: 1.125rem;
  background: var(--dark-grey);
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

td,
th {
  padding: 0.5rem 1rem;
  border: 1px solid var(--black);
}

tr:nth-child(odd) {
  background: var(--light-yellow);
}

/*** LISTS ***/

ul.alt li {
  position: relative;
  list-style: none;
}

ul.alt li::before {
  content: "\2713";
  display: inline-block;
  line-height: 1.1rem;
  text-align: center;
  color: var(--yellow);
  background: var(--deep-grey);
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  font-size: 0.75rem;
  position: absolute;
  left: -1.5rem;
  top: 6px;
}

li {
  margin-bottom: 0.563rem;
}

ol.alt {
  counter-reset: orderedList;
}

ol.alt li {
  list-style-type: none;
  position: relative;
}

ol.alt li::before {
  counter-increment: orderedList;
  content: counter(orderedList);
  display: inline-block;
  line-height: 1rem;
  text-align: center;
  color: var(--yellow);
  background: var(--deep-grey);
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  font-size: 0.75rem;
  position: absolute;
  left: -1.5rem;
  top: 6px;
}
.serviceArea {
    columns: 4;
    font-size: .85rem;
  }
.serviceArea li{
	margin:0;
}

@media (max-width: 768px) {
  ul.alt li::before,
  ol.alt li::before {
    line-height: 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
    font-size: 1rem;
    left: -2.25rem;
  }

  ul.alt li,
  ol.alt li {
    line-height: normal;
  }
  .serviceArea {
    columns: 2;
    font-size: 1rem;
  }
  .serviceArea li {
    margin-bottom: 0.25rem;
  }
}

blockquote {
  background-color: var(--almost-white);
  padding: 1.625rem 1.813rem 2.063rem 2.563rem;
  margin: 1rem auto 1rem;
  text-align: left;
  font-size: 1rem;
  border-radius: 24px;
}

blockquote.quote {
  position: relative;
  padding-top: 2.5rem;
  padding-left: 5rem;
}

blockquote.quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: url("img/quote.svg") no-repeat center / contain;
  border-top-left-radius: 24px;
}

blockquote strong {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 700;
}

blockquote p {
  margin: 0;
}

@media(min-width:992px){
	.twocol{
		column-count:2;
		font-size: .9rem;
	}
	.twocol li {
    margin: 0;
	}
}

/*** TOP LEVEL BOXES ***/

.full-height {
  display: flex;
  flex-direction: column;
}

.box-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 3rem;
  overflow: hidden;
  background-color: var(--almost-white);
  border: 1px solid var(--light-grey);
  border-radius: 24px;
}

.box-content {
  flex-grow: 1;
  overflow: hidden;
  padding: 0 2rem 1rem;
}

.box-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 230px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.box-wrapper h2 {
  font-size: 1.875rem;
  width: 100%;
  margin-bottom: 0;
  padding: 1.25rem 2rem 0.5rem;
}

/* WELLS */

.well {
  padding: 2rem 2rem 2.5rem;
  margin-bottom: 3rem;
  border-radius: 24px;
}

.well .btn {
  margin-bottom: 0;
}

.well-default {
  background-color: var(--light-yellow);
}

.well-default a {
  text-decoration: none;
}

.well-default a:hover {
  text-decoration: underline;
} 

.well-alt {
  background: var(--deep-grey);
  color: var(--white);
}

.well-alt h2,
.well-alt h3 {
  color: var(--white);
}

.well-alt a:not(.btn) {
  color: var(--white);
}
.well-alt a:hover {
  text-decoration: underline;
}
.well.well-alt img{
	max-width: 200px;
	margin: 5px auto;
}
.well .social img {
    width: 30px;
}


/** COUPONS **/
.coupon {
  border: 4px dashed var(--dark-grey);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.coupon .btn {
  margin-right: 0;
}

/* CALLOUTS */

.callout {
  margin-bottom: 3rem;
}

.callout .btn {
  margin-bottom: 0;
}

.callout-full {
  text-align: center;
}
.callout-full.img-visible,
.callout-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.callout-full.img-visible, .callout-full.img-visible h2  {
  color: var(--white);
}
.callout-full.img-visible a:not(.btn) {
  color: var(--white);
}

.callout-full.img-visible::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--overlay-color, transparent);
  z-index: 0;
}

.callout-full.img-visible .container {
  position: relative;
  z-index: 1;
}

.callout-image {
  max-width: 45%;
}
.callout-left .callout-image {
    border-radius: 24px 0 0 24px;
}
.callout-right .callout-image {
    border-radius: 0 24px 24px 0;
}
@media (max-width: 767.98px) {
    .callout-left .callout-image,
    .callout-right .callout-image {
        border-radius: 24px 24px 0 0;
    }

  .callout-image {
    min-height: 175px;
    flex-basis: 100%;
    max-width: 100% !important;
    width: 100%;
  }
}

.callout-full.img-visible .callout-content {
  padding: 3rem;
  text-align: center;
  font-size: 1.125rem;
}
.callout:not(.callout-full.img-visible) .row {
  background: var(--almost-white);
  border-radius: 24px;
}
.callout:not(.callout-full.img-visible, .callout-full.img-none)
  .callout-content {
    padding: 2rem 2rem 2.5rem;
}

@media (max-width: 768px) {
  .callout .callout-content {
    flex: 0 0 100%;
  }
}
section.callout-full:last-child {
 margin-bottom: 0;
}
/*** MODAL ***/

.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.vertical-align-center {
  display: table-cell;
  vertical-align: middle;
  pointer-events: none;
}
.modal-content {
  width: inherit;
  max-width: inherit;
  height: inherit;
  margin: 0 auto;
  pointer-events: all;
}

/*** PAGES ***/
.bkg-color h1 {
	color: var(--black);
}
.page-title {
  padding: 3.75rem 0 1rem;
}

.page-title h1 {
  line-height: normal;
  margin: 0;
}

.page-title.bkg-color {
  background: var(--);
}

.page-title.bkg-img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6.75%;
  padding-bottom: 6.75%;
  position: relative;
  margin-bottom: 2rem;
}

.page-title.bkg-img::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--image-overlay-callout);
}

/*** EXTERNAL LINKS ***/

a[target="_blank"]:has(> img):after, a[target="_blank"]:has(> svg):after,footer a[href^="https://consumerfocusmarketing.com"]:after
{
  display: none;
}

a[target="_blank"]::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-left: 4px;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'><path stroke-width='5' fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/><path stroke-width='5' fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/></svg>")
    center/cover;
  display: inline-block;
  background: currentColor;
}


/* FORMS */
.gform_wrapper {
    background: var();
    padding: 2rem;
}

