/* General Styles */
main{
    background-color: #d6d6d6 !important;
    border-top: 2px solid #fff;
}


.header-heater {
    padding: 40px 20px; /* Adds spacing but no background */
    text-align: center;
    width: 100%;
    display: block;
}

.header-heater h1 {
    font-size: 36px;
    font-weight: bold;
    color: #222; /* Darker text for contrast */
    text-transform: uppercase;
    letter-spacing: 1px; /* Adds a slight spacing effect */
    margin-bottom: 10px;
}

.header-heater h3 {
    font-size: 22px;
    color: #555; /* Softer contrast than h1 */
    font-weight: normal;
    margin-bottom: 20px;
    display: inline-block;
}

/* Subtle underline effect without a background */
.header-heater h3::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background-color: #2bace3; /* Accent color */
    margin: 8px auto 0;
    border-radius: 2px;
}

.water_heater_bg {
    background-image: url("../img/water_heater_bg.jpg") !important;
    background-size: cover;
    color: #fff;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .water_heater_bg h2 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .graphic-nomargen{
    min-height: 800px;
  }

/* Media Queries */
@media (max-width: 375px) {
    main{
        padding-top: 6rem !important;
        padding-bottom: 4rem !important;
    }

  
}

@media (max-width: 500px) {
   
    main{
        padding-top: 1rem !important; 
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 767px) {
   
    main{
        padding-top: 2rem !important; 
        padding-bottom: 4rem !important;
    }
 
}


@media (min-width: 992px) {
    main{
        padding-top: 10rem !important;
        padding-bottom: 4rem !important;
    }
} 

@media (max-width: 1440px) {

    .graphic-nomargen{
        min-height: 500px !important;
      }
} 

@media (max-width: 1200px) {

    main{
        padding-top: 4rem !important;
        padding-bottom: 8rem !important;
    }
}


@media (min-width: 1440px) {
    main{
        padding-top: 8rem !important;
    }
    
}