.view-areas-i-cover .views-row h2 {
	font-size: 18px;
}

#featured-top {
	background: linear-gradient(to bottom, var(--mt-color-bright) 50%, var(--mt-color-default-light) 50%);
}

#block-teamplus-calltoaction .content .field--name-body {
	border-radius: var(--mt-oval-radius);
    background-color: #ededed;
    color: #000000;
    padding: 30px;
}

#featured .view-content h2 {
	font-size: 16px;
}

#featured .title {
	margin: 0px 0 0px;
}

#block-teamplus-accreditations .content .field--name-field-mt-il-image img {
	filter: grayscale(0%);
    opacity: 1;
}

#footer .col-lg-3 {
	text-align: center;
}

.view-testimonials article {
	margin-bottom: 0px;
}

#block-teamplus-homepageelectricalservicessection .content .paragraph--type--mt-highlight {
	text-align: center;
}

#highlighted {
	background: linear-gradient(to bottom, var(--mt-color-bright) 50%, var(--mt-color-default-light) 50%);
}

#block-teamplus-calltoaction-2 .content .field--name-body {
	border-radius: var(--mt-oval-radius);
    background-color: #ededed;
    color: #000000;
    padding: 30px;
}


/* ==========================================================================
   Renewable Service Card Icons
   ========================================================================== */
/* ==========================================================================
   Renewable Service "Cardless" Icons
   ========================================================================== */

.feature-icon-alt {
  font-size: 3rem;  /* Controls the size of the icon */
  color: #ffffff;   /* Makes the icon white */
  line-height: 1;
}

.feature-icon-big {
  width: 4rem;
  height: 4rem;
  border-radius: 50%; /* Makes the background a circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary); /* Uses your theme's primary color */
  color: #ffffff; /* White icon */
  font-size: 2rem; /* Size of the icon itself */
}

/* Make videos fully responsive */
video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Optional: soft shadow */
}

/* Optional: Add some breathing room around it */
.video-wrapper {
  max-width: 800px; /* Set a comfortable max width */
  margin: 0 auto; /* Center it horizontally */
  padding: 10px;
}


@media (max-width: 991px) {
    .header-first {
        margin-right: 0px !important;
    }
}

.smart-columns-c .content img {
	height: 80px;
    width: auto;
}

.taxonomy-term--services {
  background-color: #1c1f26; /* Dark theme background */
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.taxonomy-term--services:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.taxonomy-term--services .taxonomy-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid var(--bs-primary);
}

.taxonomy-term--services .taxonomy-title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.taxonomy-term--services .taxonomy-description {
  color: #dcdcdc;
  font-size: 0.95rem;
}

.taxonomy-term--services .taxonomy-phone .btn {
  font-weight: bold;
  font-size: 0.95rem;
}


.view-services .views-row h2 {
	font-size: 16px;
}

.smart-columns-b .content img:hover {
	transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 15px #646cff50;
    transition: all 0.4s ease-in-out 0s, visibility 0s;
}

.smart-columns-b .content img {
	height: 150px;
    width: auto;
}

@media (max-width: 768px) {
.mt-button + .mt-button {
    margin-left: 0px;
	margin-top: 20px;
}
}

@media (max-width: 768px) {
.homepagemtbutton {
	text-align: center;
}
}

.path-frontpage #main-content {
	display: none;
}

#block-teamplus-webform fieldset {
	border: none;
	padding: 0.5em 1.5em 0.5em;
	margin-bottom: 0;
}

#block-teamplus-webform {
	max-width: 100%;
}

/* ==========================================================================
   Homepage Contact Webform Styles
   ========================================================================== */

/* This targets the specific contact form on your site */
@media (min-width: 992px) {
.webform-submission-contact-form {
  /* 1. THE LAYOUT: Turning the form into a 3-column grid */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates three equal-width columns */
  gap: 0rem 1.5rem; /* Adds space between rows and columns */
}
}

/* 3. FIELD STYLES: Targeting the labels and input boxes */
.webform-submission-contact-form .form-item {
  /* Each field is a grid item */
}

.webform-submission-contact-form label {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block; /* Ensures labels are on their own line above the input */
}

/* Style all input, select, and textarea fields */
.webform-submission-contact-form input[type="text"],
.webform-submission-contact-form input[type="email"],
.webform-submission-contact-form input[type="tel"],
.webform-submission-contact-form input[type="date"],
.webform-submission-contact-form select,
.webform-submission-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #FBE4D2; /* The light beige background for inputs */
  border: none;
  border-radius: 0.25rem;
  color: #333333;
  font-size: 1rem;
}

/* 4. FULL-WIDTH FIELDS: Making specific fields span all 3 columns */
.webform-submission-contact-form .form-item-message {
  grid-column: 1 / -1; /* This tells the element to span from the first to the last column line */
}

.webform-submission-contact-form .form-actions {
  grid-column: 1 / -1; /* The submit button also spans all columns */
}

/* 5. BUTTON STYLES: Styling the submit button */
.webform-submission-contact-form .form-submit {
  width: 100%;
  background-color: #313131; /* The dark charcoal background */
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.webform-submission-contact-form .form-submit:hover {
  background-color: #555555; /* A slightly lighter color on hover */
}
























.logo {
	float: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#block-teamplus-headersecondphonenumberblock .content .fw-bold {
	color: var(--mt-color-primary);
}

#block-teamplus-headersecondphonenumberblock .content h6 {
	margin-top: 0;
}

#block-teamplus-homepageherofirstservicesicons .content .col-md-4 {
	
}

#block-teamplus-homepageherofirstservicesicons .content img:hover {
	    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 15px #646cff50;
	transition: all 0.4s ease-in-out 0s, visibility 0s;
}

.orange-text-color {
	color: var(--mt-color-primary);
}

@media (min-width: 992px) {
  .field__item:nth-child(odd) .mt-highlight-image-wrapper {
    padding-left: 3rem;
  }
  .field__item:nth-child(odd) .mt-highlight-image-wrapper + .col-md-6 {
    padding-right: 3rem;
  }
  .field__item:nth-child(even) .mt-highlight-image-wrapper {
    padding-right: 3rem;
  }
  .field__item:nth-child(even) .mt-highlight-image-wrapper + .col-md-6 {
    padding-left: 3rem;
  }
}


#block-teamplus-homepagebannertopsecond .content {
	padding-bottom: 150px; 
}

@media (min-width: 992px) {
#block-teamplus-homepagebannertopfirst .content {
	padding-bottom: 150px; 
}
}

#block-teamplus-homepageherofirstservicesicons .content {
	 margin-top: -120px; 
	position: relative;
  z-index: 10;
}

/* ==========================================================================
   Homepage Service Tiles
   ========================================================================== */

.service-tile {
  background-color: #313131; /* A dark charcoal background */
  color: #ffffff; /* White text */
  height: 100%; /* Ensures all tiles are the same height */
}

.service-tile-content {
  position: relative;
  padding: 3rem 1.5rem 1.5rem; /* 3rem top padding to make space for the icon */
}

.service-icon {
  /* Positioning the icon */
  position: absolute;
  top: -35px; /* Pulls the icon up to overlap the image */
  left: 50%;
  transform: translateX(-50%);

  /* Styling the orange box */
  background-color: #f58426; /* Your brand's orange color */
  height: 70px;
  width: 70px;
  border-radius: 0.25rem; /* Optional: slightly rounded corners */
  
  /* Centering the icon *inside* the orange box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 40px; /* Controls the size of the icon itself */
  height: auto;
}





.header-container ul.sf-menu .sf-sub-indicator {
    top: 30px !important;
}

.header-container ul.menu > li > a, .header-container ul.menu > li > span {
    text-transform: none;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* ==========================================================================
   Service Page Hero content width
   ========================================================================== */
.field--name-field-sp-hero-subtitle {
	width: 75%;
}
.hero-title {
	width: 75%;
}
@media (min-width: 1200px) {
  .hero-container {
    max-width: 980px;
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
@media (min-width: 1500px) {
  .hero-container {
    max-width: 980px;
  }
}
@media (min-width: 1555px) {
  .hero-container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.hero-container, .hero-container-fluid, .hero-container-lg, .hero-container-md, .hero-container-sm, .hero-container-xl, .hero-container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}


/* ==========================================================================
   Service Page Hero Styles
   ========================================================================== */

.service-page-hero {
  position: relative; /* Needed for the overlay effect */
  padding: 6rem 0; /* Gives the hero some height. Adjust as you like. */
  color: #ffffff; /* Let's assume the text on top will be light. */

  /* These lines read the variables from our Twig template! */
  background-image: var(--hero-bg-image);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  background-attachment: var(--hero-bg-attachment);
  background-position: center center;
}

/* This creates the dark overlay effect */
.service-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; /* Sits below the text */

  /* Reads the color and opacity variables from Twig */
  background-color: var(--hero-overlay-color);
  opacity: var(--hero-overlay-opacity);
}

/* This makes sure the text sits on top of the overlay */
.service-page-hero .hero-content {
  position: relative;
  z-index: 2; /* Sits above the overlay */
}




.path-frontpage .internal-banner-container {
	display: none;
}

/* My Custom Styles for the Team+ Theme */
/* Default Padding for Smart Column Sections */
.smart-columns-wrapper {
  padding-top: 30px;
  padding-bottom: 25px;
}

/* This stronger rule removes the padding when the checkbox is ticked */
.smart-columns-wrapper.region--no-paddings {
  padding-top: 0;
}

.internal-banner {
    min-height: 100px !important;
}

.header-top-highlighted .row {
	margin-right: 0;
    margin-left: 0;
}

.internal-banner-container {
    min-height: 10px !important;
}

.hero-top {
    min-height: 80px;
}

.hero-top__container {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.responsive-map-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.responsive-map-container iframe,   
.responsive-map-container object,  
.responsive-map-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.googlemapblock iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
}

.googlemapblock {
    position: relative;
    padding-bottom: 350px;
    padding-bottom: auto;
    height: 0;
    overflow: hidden;
    max-height: 350px;
}

.highlighted-top__section {
    padding: 0px 0 !important;
}

#highlighted-top .highlighted-top__container .col-12 {
    padding-right: 0px;
    padding-left: 0px;
}

#highlighted-top .row {
    margin-right: 0px;
    margin-left: 0px;
}

#highlighted-top .container-fluid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
#highlighted-top .container-fluid {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}
}

/*ELECTRIC HEATING CALCULATOR CSS*/
.heatlosscalc .calc-totals {
    padding: 20px;
    color: #FFFFFF;
    background: var(--mt-color-secondary);
    overflow: hidden;
}

.heatlosscalc label {
    color: #ffffff;
}

.heatlosscalc .calc-input {
    padding: 20px;
    background: var(--mt-color-primary);
    color: #ffffff;
    overflow: hidden;
}

.heatlosscalc [class*='col-'] {
    padding: 15px;
}
/*ELECTRIC HEATING CALCULATOR CSS*/