/* hides follow button in the bottom right  | 8823008-hc jb */
#actionbar li.actnbr-btn {
	display: none;
}

/* change WordPress logo color footer | 8823008-hc jb */
.site-info a, .site-info a:hover, .site-info a:focus {
	color: #FFFAF;
}

/* Hide page titles | 8823008-hc */
.page .entry-header {
	display: none;
}

.entry-summary, .entry-footer {
	display: none;
}

/* make footer white */
.footer-wrap {
	background: #ffff;
}

.blog article .entry-header {
	clear: both;
}

/*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
#header_main .container, .main_menu ul:first-child > li a {
	height: 58px !important;
	line-height: 58px !important;
}

.header-bg {
	min-height: 0;
}

.site-title a {
	color: #000;
}

.site-branding .site-title {
	font-size: 29.49px;
}

div#jp-relatedposts h3.jp-relatedposts-headline {
	font-size: 30px !important;
}

#actionbar {
	display: none;
}

/* Remove as much white space from the bottom as possible / #8984570-HC JB */
div#content {
	margin-bottom: 0;
}

.footer-wrap {
	margin-top: unset;
}

/* center and show menu items on mobile  | 21018259-hc/zd bk */
.main-navigation ul {
	display: block;
	text-align: center;
}

/* remove menu border on mobile  |21018259-hc/zd bk */
.main-navigation li {
	display: inline-block;
	border-top: none;
}

/* remove menu button on mobile  | 21018259-hc/zd bk */
.menu-toggle {
	display: none;
}

/* center text in widget area on mobile  | 21018259-hc/zd bk */
@media only screen and (max-width: 50em) {
	.widget-area {
		text-align: center;
	}
}

/*change color of current menu item -hc21018259 -st */
.main-navigation .current_page_item>a, .main-navigation .current-menu-item>a {
	color: #000;
}

/*change footer widget social icons to black -hc21018259 -st*/
.footer-widgets svg.icon.icon-instagram, .footer-widgets svg.icon.icon-twitter, aside#widget_contact_info-4 {
	color: #6d6d6d;
}

/*  center and increase footer widget width | 21018259-hc/zd bk */
@media only screen and (min-width: 50em) {
	.site-footer .widget-area {
		width: 100%;
		text-align: center;
	}
}

/* Reduce margin between social widget and contact info -hc21018259 -st */
ul.jetpack-social-widget-list.size-medium {
	margin-bottom: -3em;
}

/*  remove sidebar margin | 21018259-hc/zd bk */
.site-main {
	margin: 0;
}

/*No hover color for site title | 21069558-hc sb*/
.site-title a:hover {
	color: initial;
}

/* Reduce menu item size for mobile | 34355299-hc bb */
@media only screen and (max-width: 620px) {
	.menu > li > a {
		font-size: 10px;
		padding-left: 8px;
		padding-right: 8px;
	}
}

.page-id-23 h2.wp-block-heading {
	color: #1e3a8a !important;
}

body {
	background: #ffffff;
	overflow-x: hidden;
}







/* Hide the default pointer */
body, a, button, img {
  cursor: none !important;
}

/* Floating cursor image */
#custom-cursor {
  position: fixed;
  width: 80px; /* original 42px → 50% bigger */
  pointer-events: none;
  transform: translate(-25%, -50%);
  z-index: 9999;
  transition: transform 0.15s ease;
}

/* Wiggle animation */
@keyframes cursorWiggle {
  0% { transform: translate(-25%, -50%) rotate(0deg); }
  25% { transform: translate(-25%, -50%) rotate(8deg); }
  50% { transform: translate(-25%, -50%) rotate(-8deg); }
  75% { transform: translate(-25%, -50%) rotate(5deg); }
  100% { transform: translate(-25%, -50%) rotate(0deg); }
}

/* Animation class */
.cursor-hover {
  animation: cursorWiggle 0.4s ease;
}

/* Hide floating cursor on mobile */
@media (hover: none), (pointer: coarse) {
  #custom-cursor {
    display: none !important;
  }
}