/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/


/***********************************************/
/* FOOTER SECTION */
/***********************************************/

/* Adjust Layout on Smaller Screens*/
@media (max-width: 767px) {
  .hhs-foot-nav-cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hhs-foot-nav-cols .col-md-6, 
  .hhs-foot-nav-cols .col-md-3 {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .hhs-foot-nav-col.hhs-foot-rss.nav-col-2 {
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hhs-foot-nav-col.hhs-foot-rss.nav-col-3 {
    margin-top: 0;
    margin-bottom: 30px !important;
  }
}
  
  @media (max-width: 767px) {
  .row .hhs-foot-nav-base {
    display: flex;
    justify-content: center;
    text-align: center;
  }
} 


/***********************************************/
/* HERO SECTION ADJUST LINK COLORS FOR H6 or Menu    */
/***********************************************/
.hero-section h6 a {
  color: #CD212A; /* Set the desired red color for links */
}

.hero-section h6 a:hover {
  color: #008C45; /* Slightly lighter red on hover (optional) */
  }
} 


/***********************************************/
/* CTA SECTIONS IN BROWN BACKGROUND    */
/***********************************************/
@media (min-width: 680px) {
  .cta-row-text-and-image .row {
    display: flex; /* Use flexbox for layout */
    flex-wrap: nowrap; /* Prevent stacking */
  }

  .cta-row-text-and-image .row > .col-lg-7,
  .cta-row-text-and-image .row > .col-lg-5 {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 50%; /* Adjust width as needed */
  }
}

.cta-row-text-and-image .col-lg-5 {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if necessary */
  text-align: center; /* Ensure text inside is centered */
}



/***********************************************/
/* PUT WORDS TOGETHER ON BIGGER SCREENS */
/***********************************************/
/* Hide the <br> for screens smaller than 768px (example breakpoint) */
@media (max-width: 500px) {
  .line-break {
    display: none;
  }
}