/* **********************************************************
 * JUPITER X THEME & ELEMENTOR OVERRIDES
 * ******************************************************** */
 

/* *****************************
 * THEME REM FONT OVERRIDES
 * *************************** */
/* VW, VH, REM, PERCENT - change any pixels to rem for padding */
/* Fonts */
html {
	font-size: 0.83vw;
}

@media (max-width: 1440px) {
    /* RESPONSIVE REM TO PX */
	html {
		font-size: 12px;
	}
}

/* *****************************
 * THEME & ELEMENTOR OVERRIDES
 * *************************** */
/* Smooth Fade Animations */
@keyframes fadeUp {
    from {opacity: 0; transform: translate3d(0,5rem,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInUp {
	animation: fadeUp ease-in-out 1.25s;
}
@keyframes fadeDown {
    from {opacity: 0; transform: translate3d(0,-5rem,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInDown {
    animation: fadeDown ease-in-out 1.25s;		
}
@keyframes fadeLeft {
    from {opacity: 0; transform: translate3d(-5rem,0,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInLeft {
    animation: fadeLeft ease-in-out 1.25s;		
}
@keyframes fadeRight {
    from {opacity: 0; transform: translate3d(5rem,0,0)}
    to {opacity: 1; transform: none}
}
.elementor-element.fadeInRight {
    animation: fadeRight ease-in-out 1.25s;
}


/* *****************************
 * SCROLLBAR STYLING
 * *************************** */
/* Browsers without `::-webkit-scrollbar-*` support */
@supports not selector(::-webkit-scrollbar) {
    html {
        scrollbar-width: thin;
        scrollbar-color: #000 #000;
    }
}

/* Browsers with `::-webkit-scrollbar-*` support */
body::-webkit-scrollbar {
    width: 15px;
}
body::-webkit-scrollbar-thumb {
    background-color: #000;
	background: linear-gradient(to bottom, #000 0%, #1000 100%);		
    border-radius: 2px;
}
body::-webkit-scrollbar-track {
    background-color: #eee;
}


/* *****************************
 * SOCIAL SHARE
 * *************************** */
a.jupiterx-social-share-link.btn .jupiterx-icon {
    color: #fff;
}
a.jupiterx-social-share-link.btn .jupiterx-icon:hover {
    opacity: .75;
}


/* *****************************
 * SCROLL TO TOP
 * *************************** */
.jupiterx-corner-buttons.jupiterx-scrolled {
    right: auto !important;
    left: -5px;
    bottom: -5px;
}
.jupiterx-scroll-top {
	border: 1px solid #fff !important;
	padding: 1rem .8rem !important;	
}
.jupiterx-scroll-top:focus {
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgb(180 180 180 / 50%);
}
.jupiterx-icon-angle-up:before {
    content: url(/wp-content/uploads/2023/05/arrow-up-white.png) !important;
}


/* HAPPY HOVER CARD OVERRIDE  (STYLE: SADIE) */

.ha-ihe-fig.ha-effect-sadie:hover .ha-ihe-title {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -140px, 0)!important;
    transform: translate3d(0, -50%, 0) translate3d(0, -140px, 0)!important;
}

.ha-ihe-fig.ha-effect-sadie .ha-ihe-title {
    top: 80% !important;
    font-size: 2.5rem;
    font-family: "Headstock Sans Extrabold", sans-serif !important;
    text-align: left !important;
    padding: 0 2rem !important;
}

.ha-ihe-fig.ha-effect-sadie .ha-ihe-desc {
    text-align: left!important;
}

/* Hover cards learn more bold */
.title-bold {
	font-weight: 900;
}