/* Site logo position & size / 15997203-hc kp */
.site-header .site-logo img {
  max-width: 40px;
	margin-left: 50px;
	
}

/*removes page titles*/
h1.entry-title {
    display: none;

}

/*Change the head font to Montserrat and sans-serif font family*/
.site-header a {
	font-family: Montserrat, Verdana, Arial, sans-serif;
	font-weight: 700;
}

.home h5 a {
    color: #000;
}

/* change menu font color to black and uppercase 16165386-hc lm */ 
.main-navigation a:link, .main-navigation a:visited , .main-navigation , .main-navigation a:hover , .site-header .main-navigation > div > ul > li .sub-menu a{
    color: #000;
}
.site-header .main-navigation > div > ul > li .sub-menu a {
    background: #fff;
}

.site-header .main-navigation > div > ul > li:hover > ul::before, .site-header .main-navigation > div > ul > li.focus > ul::before, .site-header .main-navigation > div > ul > li.current-menu-item > ul::before {
    border-bottom: 8px solid #000;
}

.main-navigation a {
    text-transform: uppercase;
    font-weight: normal;
}

/* change title font color to black 16165386-hc lm */ 

.site-title, .site-description {
    color: #000;
	text-align: center
}

/* Wide Separator Full Width | 17979693-hc (KK) */
.entry-content hr.wp-block-separator.is-style-wide {
    max-width: 100%;
}

/* Adjust the header area on mobile | RG-22416038-hc */
@media screen and (max-width: 782px){
.main-navigation > div {
    text-align: center;
}

.site-header .site-logo img {
    margin: auto;
}

header#masthead {
    display: flex;
    flex-direction: column;
}

nav#site-navigation {
    text-align: center;
    order: 4;
}

.site-logo {
    order: 3;
    text-align: center;
 }
}

/*Adjust logo, title, description order on desktop 22416038-hc sy*/
@media screen and (min-width: 783px) {
.site-header .site-title {
    grid-area: site-logo-start;
}
.site-header .site-logo {
    grid-area: site-description;
}
.site-header .site-description {
    grid-area: site-title-start;
}
}

 /* Center logo under site title #29838375-hc */
 @media screen and (min-width: 783px) {
     .site-header .site-logo img {
         margin-left: 120px;
     }
 }