/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 14 2025 | 22:34:52 */
/* Apply Elementor Typography Styles to Standard Posts */
h1 {
	font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
	font-weight: var( --e-global-typography-primary-font-weight );
	color: var( --e-global-color-primary );
}
h2 {
    font-family: var( --e-global-typography-secondary-font-family ), Sans-serif;
  font-weight: var( --e-global-typography-secondary-font-weight );
  color: var( --e-global-color-secondary );
}
h3 {
    font-size: var(--e-global-typography-tertiary-font-size, 24px);
}
h4, h5, h6 {
    font-size: var(--e-global-typography-quaternary-font-size, 20px);
}
p {
    font-family: var( --e-global-typography-text-font-family ), Sans-serif;
  font-weight: var( --e-global-typography-text-font-weight );
  line-height: var( --e-global-typography-text-line-height );
}

.page-content a {
  text-decoration: none !important;
}
ul {
	margin-bottom: 20px;
}

h4.elementor-icon-box-title a:hover {
	color: #ff9238;
}
/* TrustIndex custom CSS */
.ti-widget.ti-goog, .ti-rating-text, .ti-rating-text span, .ti-rating-text span strong {
	color: #ffffff !important;
}
/* Default logo size */
#masthead .banner-logo img {
    transition: max-height 0.3s ease-in-out;
}
/* Center the logo when scrolling */
#masthead.element-is-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Smaller logo when scrolled */
#masthead, #sticky-banner {
	padding: 0px !important;
	margin: 0px !important;
}
#masthead .element-is-sticky .banner-logo img {
    max-height: 50px !important; /* Adjust as needed */
	width: auto; /* Keeps aspect ratio */
}
/* Bouncing anchor scroll on hero images */
.bounce-icon {
  animation: bounce 2s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px); /* adjust this height if you want it more or less bouncy */}
}
