/*
Theme Name: Canal Fuel Co
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-light: #EDEDED;
  --gray-medium: #DDDDDD;
  --gray-dark: #333333;
  
  --red: #D12329;
  --red-hover: #F00009;
  



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

  
  /* Typography */
  --font-headline: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-size-base: 0.875rem;
  --line-height-base: 1.625rem;
  
  /* Spacing */
  --spacing-small: 2.1rem;
  --spacing-medium: 1.2rem;
  --spacing-large: 1.563rem;
  
  /* Border radius */
  --border-radius: 2.813rem;


/* image overlays */
  --image-overlay: rgba(51, 51, 51, 0.8);
  --image-overlay-callout: rgba(51, 51, 51, 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.45rem;
    line-height: 1.55;
  }
}

*,
::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-headline);
  color: var(--black);
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--red);
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.563rem;
}

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 {
  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-headline) !important;
  display: inline-block;
  white-space: pre-wrap;
  font-size: 1.1;
  font-weight: 700 !important;
  border-radius: var(--border-radius) !important;
  text-transform: uppercase !important;
  border-color: transparent;
}

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

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


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

.btn-default {
  background: var(--gray-dark);
  color: var(--white);
}


.btn-default:hover {
  color: var(--white);
  background: var(--body-text-color);
}


.callout .btn,
.well .btn,
.coupon .btn {
    margin-right: 1rem;
}
.home .btn .btn-primary{
	font-size: 1.375rem !important;
}

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


/*** GLOBAL ***/

main {
  background: var(--gray-medium);
}

main:not(.home main) {
   padding-bottom: 2rem;
}

.gray-dark {
  background: var(--gray-dark);
}

/*** HEADER ***/


.top-header {
    background: var(--gray-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
}

.top-header img {
  margin-right: .3rem;
}

.top-header a[href^="tel:"] {
  font-weight: 400;
}

@media(min-width: 768px) and (max-width: 830px) {
	  .top-header a {
      margin-left: 1.938rem !important;
  }
}
@media(min-width: 768px) {
  .top-header a {
      margin-left: 2.938rem;
  }
  .top-header {
        text-align: right;

  }

.navbar-brand {
    margin-top: -75px !important;
  }



}


@media(max-width:767px) {
    .desktop-only {
        display: none;
    }

    .mobile-only .navbar-brand {
        margin: auto;
        display: block;
    }

    .mobile-only.phone a {
        font-size: 1rem;
    }
    
    .mobile-only.phone img {
        margin-right: .5rem;
    }

}

@media(min-width:768px) {
  .mobile-only {
    display: none;
  }

}
/*** NAV BAR ***/


nav {
  box-shadow: 0px 5px 6px #0000001D;

}
.nav-link {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--black);
}

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


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

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

.submenu-two {
    width: 100%;
}

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


/*** 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 {
    color: #c71010;
    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;
  }
}


@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-bottom: 2rem;
}

}


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


/*** 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-carousel .carousel-item {
    position: relative;
    height: 100vh; /* 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;
}

#home-carousel .overlay {
    position: absolute;
    top: 60px; /* Stop 60px from the top */
    bottom: 60px; /* Stop 60px from the bottom */
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-carousel .text-box {
    color: white;
    padding: 20px; /* Add some padding to the text box */
}

#home-carousel .slide-headline {
    margin-bottom: 1rem;
}

@media(max-width: 768px) {
  #home-carousel .overlay {
    top: 0;
    bottom: 0;
  }
	
	#home-carousel .text-box p:has(> .btn) {display: flex;flex-direction: column;}
	#home-carousel .btn {
		width: 100%;
	}
}
/*

#home-carousel {
    color: var(--white);
}

#home-carousel .item-content {
    padding-top: 7.5%;
    padding-bottom: 7.5%;

}*/


#home-carousel  .slide-headline, .text-box h1, .text-box h2 {
  font-size: 4.375rem;
  font-weight: 700;
  display:block;
  line-height:5.313rem;
  color: var(--white);
}

.carousel-control-prev, .carousel-control-next {
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2rem;
}



@media(width <= 768px) {
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }

}

.text-box {
  line-height: normal;
}


@media(max-width: 768px) {
  .text-box .btn {
    margin-bottom: 2rem;
}
}
.text-box p {
    font-size: 1.063rem;
    font-weight: 700;
    font-style: italic;
    display: flex;
    justify-content: center;
    max-width: 520px;
    margin: auto;
    text-align: left;
}

.text-box img {
    min-width: 90px;
    margin-right: 1rem;
}

.carousel-control-prev, .carousel-control-next {
    background: transparent;
    border: none;
        cursor: pointer;
}

.visually-hidden {
    display: none;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    height: 40px;
    width: 40px;
	margin-bottom: 3rem;
}

.carousel-control-prev-icon {
    background-image: url("img/prev-icon.svg");
}

.carousel-control-next-icon {
    background-image: url("img/next-icon.svg");
}

.home .box-wrapper {
  margin-bottom: 5.313rem;
}
.home .box-wrapper h2 {
    padding-left: 0;
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
}


.home-box .btn.btn-default {
    font-size: .875rem !important;
        padding: .75rem 3rem;
margin: auto;
    display: table;
    margin-top: 2rem;
}

@media(max-width:767px){
	.home-box .btn.btn-default {
		font-size: 1.5rem !important;
	}
}

.service-area * {
    color: var(--white);
}

.service-area {
    font-size: 1.125rem;
    line-height: 1.563rem;
}

.service-area-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 3rem;
}

.service-area-wrapper .btn, .servicer-area-wrapper p:last-of-type {
  margin-bottom: 0;
  margin-right: 0;
}
.service-area h2 {
    font-size: 3.125rem;
}

.service-area h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

@media(max-width: 768px) {
	.service-area-wrapper .btn {
    	margin: auto;
	}
}

.home .gray-dark {
  border-bottom: 10px solid var(--red);
}


.testimonial-box {
    font-size: 1.063rem;
    font-style: unset;
    background: unset;
    border: unset;
    margin-top: unset;
}

.testimonial-box img {
    margin: auto auto 1.25rem;
    display: block;
}

.testimonials h2 {
    font-size: 1.375rem;
    color: var(--black);
}

.testimonials img {
  margin-bottom: 1.063rem;
  margin-top: 2.313rem;
}


/*** FOOTER ***/


footer, footer a {
  color: var(--white);
}

.top-footer {
  background: var(--gray-dark);
    font-size: 0.875rem;
    padding-bottom: 1.688rem;
    padding-top: 1rem;
}

footer .nav-link, footer   .nav-item.active > a {
      font-size: 0.875rem;
      color: var(--white);

}
footer .nav-item, footer .nav-link {
    padding-bottom: 0;
    margin: 0;
}

.contact-info img {
    display: block;
    margin-top: 1.438rem;
}

.logo-info img {
  margin-bottom: 0.5rem;
}

@media(min-width: 768px) {
.logo-info p {
  max-width: 440px;
}
ul#menu-footer .nav-item {
    text-align: left;
}
}
.bottom-footer {
  background: var(--black);
}

@media(max-width: 768px) {
  .bottom-footer * {
    font-size: 1rem;
  }

  .top-footer {
    text-align: center;

}

.top-footer img {
    display: block;
    margin: 1rem auto;
}

.top-footer address {
    display: table;
    text-align: left;
    margin: auto;
}

footer .navbar {
    justify-content: center;
}

#menu-footer .nav-item {
    border: none;
    margin-bottom: 0;
    padding: 0;
}

#menu-footer .nav-link {
    font-size: 1.25rem;
}
}

footer nav {
    all: unset;
}


/*** 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 dashed var(--gray-dark);
      background: var(--gray-medium);
    padding: 1rem 1.25rem;

}

.panel-title h2, .panel-title h3 {
  font-size: 1.563rem;
}


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

.panel-title h3 {
  margin: 0;
}

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


.panel-title::after {
  content: "-";
  background-color: var(--red);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  line-height: normal;

}

.panel-title.collapsed::after {
  content: "+";
  background-color: var(--red);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  line-height: normal;

}




/*** BLOG - SIDEBAR ***/

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

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

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

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

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

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

}

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

}

.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, .6);
}

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


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

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

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

}

article h2 {
    font-size: 1.875rem;
}

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

}

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

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

aside {
  background: var(--gray-light);
  border-top: 10px solid var(--red);
  box-shadow: 0px 5px 6px #0000001D;

}

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


/**** TABLES ****/

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

th {
  font-size: 1.125rem;
  background: #707070;
  font-weight: 600;
  text-align: center;
}

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-light);
}

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(--gray-dark);
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  font-size: 0.75rem;
  position: absolute;
  left: -1.5rem;
  top: 6px;
}
.serviceArea{
  columns:3;
  font-size: .9rem;
}
.serviceArea li{
  margin-bottom: 0;
}

.threecol{
column-count:3;
}

@media(max-width:992px){
	.threecol{
	column-count:2;
	}
}

@media(max-width: 768px) {
	.threecol{
	column-count:1;
	}
  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: .25rem;
  }
  
}

blockquote {
  padding: 2rem;
  margin: 2rem auto 3rem;
  text-align: left;
  border-left: 10px solid var(--red);
  background: var(--gray-light);
  font-style: italic;
}

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: .5rem 2rem 2rem;
    background: var(--gray-light);
    color: var(--black);
}

.box-content .btn {
    display: block;
    width: 100%;
    padding: 1rem;
	
}

.box-content h3 {
    margin-top: 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 {
  color: var(--gray-dark);
  font-size: 1.875rem;
  width: 100%;
  background: var(--gray-light);
  margin-bottom: 0;
  padding: 1.25rem 2rem 0;
}

/* WELLS */

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

.well .btn {
    margin-bottom: 0;
    color: var(--white);
}

.well .btn:hover {
}

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

.well-default h2, 
.well-default h3 {
    color: var(--black);
    font-size: 1.875rem;
}

.well-default .btn {
  background: var(--body-text-color);
}

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

.well-alt h2, 
.well-alt h3 {
    color: inherit;
    font-size: 1.875rem;
}

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

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


/** COUPONS **/

.coupon {
  border: 6px dashed var(--red);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.coupon h3,.coupon h2 {
  color: var(--black);
}

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

/* CALLOUTS */

.callout {
    margin-bottom: 3rem;
}

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

.callout h2, .callout h3 {
  color: var(--gray-dark);
  font-size: 1.875rem;
}

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

.callout-full.img-visible {
    border-bottom: 10px solid var(--red);
}

.callout-full.img-visible, .callout-full.img-visible h2 {
    color: var(--white);
}

.callout-full.img-visible a:not(.btn) {
    color: var(--white);
    text-decoration: underline;
}

.callout-full.img-visible a:not(.btn):hover {
 text-decoration: none;
}


@media(min-width: 768px) {
.callout-image {
    max-width: 45%;
}

}

@media(max-width: 768px) {
	.callout .callout-image {
    padding: 20%;
	}
}
.callout-full.img-visible:before  {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--image-overlay);
}

.callout-full.img-visible .callout-content {
    padding: 3rem;
    text-align: center;
    font-size: 1rem;
}

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



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

}

.page-title h1 {
  color: var(--gray-dark);
  line-height: normal;
 /* margin: 0;*/
}

.page-title.bkg-color {
   
}

.page-title.bkg-img {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top:21%; 
}

.bkg-img {
  padding-top: 21%;
}

.page-title.bkg-img h1 {
  color: var(--gray-dark);
}

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

/*** 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(--gray-light);
    padding: 2rem;
}
