/* gets rid of the Titles ("HOME) on pages right below the nav bar*/ 
.featured-content .entry-title a {
    display: none;
}

/*gets rid of the magnifiying glass icon on nav bar */
@media (min-width: 992px) {
  .toggle-sidebar-button svg:nth-of-type(1) {
    display: none;
  }
}

/*gets rid of the nav bar header image (from featured image) of a page, find the page id of a page by clicking the page in the WP backend */
.page-id-456 .page-header > * {
  display: none;
}

/* gets rid of contact us header */
.page-id-41 .page-header > * {
  display: none;
}
	
/* changes nav bar color to white*/
#masthead .main-navigation ul ul a {
  color: #636363;
}

.main-navigation ul ul {
  background-color: rgba(255,255,255,0.9);
}

.main-navigation ul ul > * + * {
    border-top-color: rgba(0,0,0,.09);
}
/* changes nav bar color to white*/

/* removes nav bar text shadow */
.site-header,
.page-header.has-background{
  text-shadow: none;
}

/* changes opacity of header image to adjust the tint */
#primary-header .featured-image {
  opacity: .4;
}

/* turns of "Give" button on nav bar red where the text and border is red, so that it stands out on the nav bar
.menu-link-red a {
  color: #b93054;
  font-weight: bold;
}
 */

/* turns "Give" button on nav bar red with red rounded box, so that it stands out on the nav bar */
.menu-link-rounded a {
  background-color: #b93054;
  border-radius: 30px;
  text-shadow: none;
  font-weight: bold;
}

/* remove grey border on images */
img[class*="wp-image-"], .entry-attachment img {
    border: 0px solid rgba(0,0,0,0.05);
    padding: 1px;
}

/* hides the title of the Feature Content pages, otherwise, "Home Banner" would be displayed above the banner since that is the name of the page */
.featured-page-one .entry-title,
.featured-page-one .th-has-line-sep::after{
  display: none;
}

.featured-page-three .entry-title,
.featured-page-three .th-has-line-sep::after{
  display: none;
}

/*reduces the padding for feature content banner #1 #f4f2e6*/
.th-py-3xl {
    padding-bottom: 2rem;
    padding-top: 2rem;
}



