/* change menu link size */
.main-navigation a {
	font-size: 13px !important;
}

/* make site title move left*/
.site-title {
	text-align: left;
}

/* -- left- bottom logo and right-align main and social navigation when site title is hidden on larger screens | #29793141-hc -- */
@media screen and (min-width: 560px) {
	/* set header to display as grid */
	.site-header {
		display: grid;
		grid-template-areas: "site-logo main-navigation" ". social-navigation";
	/* if there is no social navigation menu, replace the site-logo in this line with a . to align the logo with only the main navigation, like this: ". social-navigation" */
		grid-template-columns: 300px auto;
	/* change the value of 150
	 * px to adjust the size of the site logo */
		align-items: space-between;
	}
	
	/* set area for site branding */
	.site-header .site-branding {
		grid-area: site-logo;
	}
	
	/* set area and text alignment for main navigation area */
	.site-header .main-navigation {
		grid-area: main-navigation;
		text-align: right;
	}
	
	/* set area for social navigation */
	.site-header .social-navigation {
		grid-area: social-navigation;
	}
	
	/* set alignment of social navigation */
	.site-header .social-navigation > div > ul {
		justify-content: flex-end;
	}
}


.main-navigation > div > ul {
	justify-content: right;
}

/* HC-31634490 | Sabbir | Removing border colors from Submenu */
.sub-menu {
	border: none !important;
}

/* Hide slideshow buttons for Jetpack slideshow | 31652226-hc kf */
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev, .wp-block-jetpack-slideshow[data-autoplay="true"] .wp-block-jetpack-slideshow_button-pause {
        display: none !important;
    }
/* Changes font size of page titles #31636608-hc KD */
@media (min-width:1008px) {
	.page .entry-title {
		margin-left: -17%;
	}
}

.page .entry-title {
	font-size: 1.5rem;
	text-align: left;
}
/* Adjust padding between header and image slider AD 31696463-hc */
.site-header {
	padding-bottom: 0px !important;
}
wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_slide figure {
	height: 90% !important;
}
/* Set separator blocks to full width -31720627-hc - SM*/
.wp-block-separator.has-background:not(.is-style-dots) {
	max-width: unset;
	width: 100vw;
}
/* HC-31970440 | Sabbir A | Removing underline from links*/
a {
  text-decoration: none !important;
}
/* Make slideshow block images fullwidth SS-32090943-hc */
.wp-block-jetpack-slideshow.alignfull .wp-block-jetpack-slideshow_image {
  width: 100vw;
  max-width: unset;
  object-fit: cover;
}
/* hide slideshow pagination on home 32250820-hc */
.home .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets {
    display: none;
}
/* Edit footer link colors / 32562585-hc rw */
.wp-block-column a, .wp-block-column a:hover  {
	color: #000;
}
/* Edit title font size / 33987469-hc rw */
.site-title a {
	font-size: 40px;
}

/* widen gallery and add gap between images on page #1731 | XXXXXX-hc/zen GH */

@media  screen and (min-width:600px){

.page-id-1731  .wp-block-gallery {
  width: 90%;
  gap: 4em;
} 

.page-id-1731 .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    width: calc(33.33333% - 4em);
}

.page-id-1731 .wp-block-gallery.has-nested-images.columns-2 figure.wp-block-image:not(#individual-image) {
    width: calc(50% - 4em);
}

.page-id-1731 .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),   
.page-id-1731 .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image) {
    width: calc(50% - 4em * 0.5);
}
}
/* Align menu with the site title hc-40235196-vk*/
@media screen and (min-width: 560px){ 
.site-header .main-navigation {
    padding-top: 30px;
}