/*
Theme Name: Drees
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 */
  --white: #FFF;
  --black: #000;
  
  /* Grays */
  --gray-lightest: #F2F2F2;
  --gray-light: #0000004D;
  --gray-medium: #000000BF;
  --gray-dark: #2D2F34;
  
  --blue-light: #003FCC;
  --blue-medium: #002780;
  --blue-dark: #001C5D;
  
  --red-light:#E80000;
  --red-dark: #AA1010;

  /* Semantic colors */
  --body-text-color: var(--gray-dark);
  --headline: var(--blue-medium);
  --link: var(--red-light);
  --link-hover: var(--red-dark);

  
  /* Typography */
  --font-headline: "Rubik", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-button: "Rubik", sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.75rem;
  
  /* Spacing */
  --spacing-small: .3rem;
  --spacing-medium: .60rem;
  --spacing-large: 2rem;
  
  /* Border radius */
  --border-radius: 2.313rem;


/* image overlays */
  --image-overlay-default: rgba(0, 0, 0, 0.8);
	 --image-overlay-blue: rgba(0, 28, 93, 0.8);
  --image-overlay-callout: rgba(0, 0, 0, 0.8);

}


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), body .btn {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

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


.wrapper {
  padding: 2rem 15px 4rem;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-family: var(--font-body);

}

h1 {
  font-size: 3.125rem;
  color: var(--blue-medium);

}

h2 {
  font-size: 2.188rem;
  color: var(--blue-dark);
}

h3 {
  font-size: 1.563rem;
    color: var(--red-dark);

}

h4 {
  font-size: 1.375rem;
      color: var(--red-dark);

}

p {
  padding: 0;
}

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

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

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

.container {
  min-width: 95vw;
}

hr {
  border-top: 1px solid var(--red-dark);
  margin: 1.875rem auto;
}

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

.btn, .gform_button {
  padding: var(--spacing-medium) calc(var(--spacing-large) + var(--spacing-small));
  margin: var(--spacing-medium) var(--spacing-large) var(--spacing-medium) 0;
  text-decoration: none;
  font-family: var(--font-button) !important;
  display: inline-block;
  white-space: pre-wrap;
  font-size: 1.063rem !important;
  font-weight: 700 !important;
  border-radius: var(--border-radius) !important;
  text-transform: uppercase !important;
  border: 2px solid;
}

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

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


.btn-primary:hover, .gform_button:hover {
  color: var(--white) !important;
  background: var(--blue-medium);
  border-color: var(--blue-medium);
}

.btn-default {
  background: var(--blue-medium);
  color: var(--white);
  border-color: var(--blue-medium);
}


.btn-default:hover {
  color: var(--blue-medium);
  background: var(--white);
}


.callout .btn,
.well .btn,
.coupon .btn {
    margin-right: 1rem;
}

.home .btn {
  margin-right: unset;
}

@media(max-width:767px){
  .btn, .gform_button{
    display: block !important;
    font-size: 1.65rem !important;
    margin: .75rem auto;
  }
}

/*** GLOBAL ***/

/* Text alignment utilities for mobile and desktop */
.text-left-sm {
  text-align: left !important;
}
.text-center-sm {
  text-align: center !important;
}
.text-right-sm {
  text-align: right !important;
}

/* Apply at the medium (≥768px) breakpoint */
@media (min-width: 768px) {
  .text-left-md {
    text-align: left !important;
  }
  .text-center-md {
    text-align: center !important;
  }
  .text-right-md {
    text-align: right !important;
  }
}

/* Optional: Large breakpoint (≥992px) */
@media (min-width: 992px) {
  .text-left-lg {
    text-align: left !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}

/*** HEADER ***/

@media(min-width: 768px) {
  .phone-header {
    display: flex;
    align-items: center;
	  justify-content:right;
}
.phone-header a {
      margin-left: 0.75rem;

}

}

.navbar-brand {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}

header .phone {
    color: var(--red-light);
    font-size: 1.875rem;
    font-weight: 700;
}

@media(max-width:890px) and (min-width:768px){
	header .phone{
		font-size:1.5rem;
	}
	.phone-header .btn.btn-primary {
    	padding: 1rem 1.5rem;
	}
}

@media(max-width:767px){
	header {
    text-align: center;
	}
	header .phone{
		line-height:2;
	}
}
/*** NAV BAR ***/

.main-menu {
    background: var(--blue-medium) !important;
    text-transform: uppercase;
    box-shadow: 0px 5px 6px #0000004D;
}

.main-menu .nav-link {
  color: var(--white);
	font-family: var(--font-headline);
}

.nav-link img {

}
.nav-item {
    margin-bottom: 0;
   /* display: flex;*/
    justify-content: center;
}

@media(min-width: 768px) {
	.nav-item {
	   display: flex;
	}
}

.main-menu .nav-link:hover {
}


.dropdown-item {
  font-weight: 500;
  color: initial;
}

.dropdown-item:hover {
  color: var(--gray-dark);
  border-radius: 0;
}

.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: .25rem;
}
@media(max-width:790px){
  .nav-link img{
    width: 20px;
  }
}

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

  /* show dropdown menus on hover */
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    text-align: left;
    padding: .5rem 1.5rem;
    font-size: 1rem;
  }


  /* removes the deadzone click area */
  .dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .dropdown-item:hover,
  .nav-link:hover,
  .nav-item:hover,
  .nav-item.active > a {
    background: transparent;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
}

@media(min-width: 768px) {
  .dropdown-menu {
        box-shadow: 0px 1px 5px rgba(0,0,0,0.15);
  }
  
  .dropdown-menu {
    left: auto;
      /*right: 0;*/
      margin: 0 auto;
  }

    /* hides carets */
  .dropdown-toggle::after {
    display: none;
  }
}
.nav-link{
    font-size: 1.25rem;
}
.nav-link, .dropdown-item {
  font-weight: 500;
  color: var(--blue-medium);
}

.nav-link, .dropdown-item:hover {
  color: var(--blue-dark);
}

@media (max-width: 768px) {
  .nav-link, .dropdown-item {
      text-align: left;
      padding-bottom: 1rem;
      font-size: 1.5rem;
    }

    .main-menu .nav-link {
      font-size: unset;
    }

.navbar-brand {
    margin: 0rem;
	
}

}


@media (min-width: 768px) and (max-width: 992px) {
    .navbar-brand {
        display: block;
        margin: 0 auto;
    }
}




/*** 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: -.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: .5rem 2.25rem .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: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

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

  .third-leel .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;
}

.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.25rem;
  }

  .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;
}


}
/*** HOME ***/

.home h1 {
    color: var(--blue-light);
    margin: auto;
    border: 3px solid var(--white);
    border-radius: 75px;
    padding: 2rem 4rem;
    max-width: 1100px;
    text-shadow: 0px 3px 6px var(--white);
    background: rgba(255, 255, 255, 0.45);
    margin-top: 3.75rem;
}

#home-carousel {
  z-index: -1;
}

#home-carousel .carousel-item {
    position: relative;
    height: 70vh; /* Full viewport height */
}

#home-carousel .item {
    position: relative;
    height: 100%;
}

#home-carousel .media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#home-carousel .responsive-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-carousel .responsive-media[style*="background-image"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.card-body {
  padding-top: .5rem;
}

.card-body h2 {
  font-size: 1.75rem;
  color: var(--red);
  margin: 0;
}
@media(max-width:768px){
	.card-body h2{
		font-size:2.2rem;
	}
}

.card-body p:first-of-type {
  color: var(--red);
  margin-bottom: .5rem;
}

img.card-img-top.mx-auto {
    max-height: 2rem;
}

.featured-bkg {
    background: var(--gray-lightest);
    text-align: center;
    padding-top: 2.813rem;
    padding-bottom: 2.813rem;
}

.featured-bkg p:first-of-type {
  font-size: 1.563rem;
  margin-bottom: 1rem;
  margin-top: .25rem;
  color: var(--blue-medium);
  text-transform: uppercase;
}

.featured-bkg .btn {
  margin-top: 1rem;
}

@media(min-width: 768px) {
.featured-bkg p {
  max-width: 768px;
  margin: auto;
}
}


.testimonials-bkg {
    background: var(--blue-medium);
    color: var(--white);
    text-align: center;
    padding-top: 2.813rem;
    padding-bottom: 2.813rem;
}

.testimonials-bkg h2 {
  color: var(--white);
}

.testimonials-bkg .subheadline {
  text-transform: uppercase;
  font-size: 1.563rem;
}

.testimonials-bkg blockquote {
  background: none;
  font-size: 1rem;
}

.testimonials-bkg .author {
  display: block;
  font-weight: 700;
}

/*** FOOTER ***/

footer {
  background: var(--blue-dark);
  color: var(--white);
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
}

footer .phone {
    font-size: 2.188rem;
    font-weight: 700;
    display: block;
}

footer a {
    color: inherit;
}
@media(max-width:767px){
	footer .phone{
		margin-top:1.5rem;
	}
}
/*** ACCORDIONS ***/


.accordion {
  margin: 2.75rem 0 2.75rem;
}


.accordion-group {
    margin-top: 1.875rem;
    overflow: hidden;
}

.panel-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 .5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  font-family: var(--font-headline);
  border-bottom: 2px solid var(--red-dark);
  padding: .5rem;
}


.panel-title.collapsed h3 {
  color: var(--red-dark);
}

.panel-title h3 {
  margin: 0;
  color: var(--red-dark);
}

.panel-content {
  padding: 1.5rem 1.25rem;
}


.panel-title::after {
  content: "-";
  background-color: var(--red-dark);
  color: var(--white);
  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: .15rem;

}

.panel-title.collapsed::after {
  content: "+";
  background-color: var(--red-dark);
  color: var(--white);
  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: .15rem;

}




/*** BLOG - SIDEBAR ***/

.blog-sidebar {
    padding: 2rem;
}

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

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

.blog-sidebar .blog-btn:hover {

}

.blog-sidebar a:hover {
}

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

}

.post-content aside .btn-primary:hover {

}

.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  {
}

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

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

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

.blog-btn {
  font-size: medium;
  padding: .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 - INDEX ***/

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

.blog-content {
}


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

.blog-article .blog-link:hover {
  text-decoration: none;
}

.blog-content {
  padding: 2.313rem;

}

article h2 {
    font-size: 1.875rem;
}

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

}

article .post-link:hover {
}

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

aside {
}

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


li.categories {
    list-style: none;
}

.categories h3 {
  padding-bottom: .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(--blue-dark);
  font-weight: 600;
}

td, th {
  padding: 0.5rem 1rem;
}

thead {
  background: var(--gray-dark);
  color: var(--white);
  border: 1px solid var(--gray-dark);
  text-align: left;
}


tr:nth-child(even) {
  background: var(--gray-lightest);
}

td, th {
  border: 1px solid var(--gray-dark);
}

/*** 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(--white);
  background: var(--gray-dark);
  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(--white);
  background: var(--blue-light);
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  font-size: 0.75rem;
  position: absolute;
  left: -1.5rem;
  top: 6px;
}
  .serviceArea{
    font-size: .9rem;
  }
  .serviceArea li{
    margin-bottom: 0rem;
	line-height: 1.7;
  }

@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;
  }

  }

@media(min-width:768px){
	.threecol{
		column-count:3;
	}
}
blockquote {
    padding: 1rem;
    font-style: italic;
    background: var(--gray-lightest);
    border-left: 10px solid var(--blue-medium);
}

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

blockquote p {
  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;

}

.box-content {
    flex-grow: 1;
    overflow: hidden;
    padding: 0 2rem 2rem;
    background: var(--gray-lightest);
    color: var(--black);
}

.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;
  background: var(--gray-lightest);

}

/* WELLS */

.well {
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 3rem;
}

.well .btn {
    margin-bottom: 0;
    margin-top: 1rem;
}

.well .btn:hover {
}

.well-default {
  background: var(--blue-medium);
  color: var(--white);
}

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

.well-default a {
  color: var(--white);
}

.well-default a:not(.btn):hover {
  text-decoration: underline;
}

.well-alt {
  background: var(--blue-dark);
  color: var(--white);
}

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

.well-alt a:not(.btn) {
  text-decoration: underline;
  color: var(--white);
}

.well-alt a:hover {
  text-decoration: none;
}


.well-default .btn {
  background: var(--blue-medium);
  border-color: var(--white);
	color:  var(--white) !important;

}

.well-default .btn:hover {
  background: var(--white);
  color: var(--blue-medium) !important;
}

.well-alt .btn:hover {

}


/** COUPONS **/

.coupon {
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  border: 4px dashed var(--blue-medium);
}

.coupon h3,.coupon h2 {
}

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

/* CALLOUTS */

.callout {
    margin-bottom: 3rem;
}

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

.callout h2, .callout h3 {
}

.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 a:not(.btn):hover {
    text-decoration: underline;
}


.callout-image {
    max-width: 35%;
}

.callout-full.img-visible {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.callout-full.img-visible::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.callout-full .callout-content {
  position: relative;
  z-index: 2;
}

.default-img-bkg::before {
  background: var(--image-overlay-default);
}

.blue-img-bkg::before {
  background: var(--image-overlay-blue);
}


.callout-full.img-visible .callout-content {
    padding: 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: var(--white);
}

.callout:not(.callout-full.img-visible, .callout-full.img-none) .callout-content {
    padding: 2rem 2rem 2.5rem;
    background: var(--gray-lightest);
}



@media (max-width: 768px) {
    .callout .callout-content {
        flex: 0 0 100%;
    }
}



/*** MODAL ***/

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none;
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}
.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
 max-width:inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events:all;
}

/*** PAGES ***/


.page-title {
      padding-top: 2.375rem;
    padding-bottom: 2.375rem;
    margin-bottom: 2.5rem;
}

.page-title h1 {
  color: var(--blue-medium);
  line-height: normal;
  margin: 0;
}

.page-title.bkg-color {
    background: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.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 h1 {
}

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


/*** 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 {
    padding: 1rem 2rem;
    background: var(--gray-lightest);
    margin-bottom: 2rem;
}

.gform_button{
	color:var(--white) !important;
}
