/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
    CSS
-----------------------------------------------------------------*/



.back-to-top-2 {
    position: fixed;
    bottom: 20px;
    right: 90px;
    display: none;
}

/* Prevent margin right on mobile */
html, body { overflow-x: hidden; }

/* Offset Fixed Header */
html { 
    scroll-padding-top: 60px; 
}

a.hp-text-custom-white,
a.hp-text-custom-white:hover,
a.hp-text-custom-white:focus,
a.hp-text-custom-white:active {
  color: #fff !important;   /* or use `inherit` to take the colour from the parent */
  text-decoration: none;    /* maintains no-underline */
}

/* Color Variables */
:root {
    --hp-custom-primary: #000000;
    --hp-custom-secondary: #D22530;
    --hp-custom-tertiary: #586B7F;
}


.hp-small{
    font-size: 0.938em;
}

/* Custom Semibold */
.fw-semibold{
    font-weight: 600;
}

/* Custom Text Colors */
.hp-text-custom-primary{
    color: var(--hp-custom-primary);
}

.hp-text-custom-secondary{
    color: var(--hp-custom-secondary);
}

.hp-text-custom-tertiary{
    color: var(--hp-custom-tertiary);
}

.hp-text-custom-white{
    color: #ffffff;
}

.hp-text-custom-light{
    color: #a1a1a1;
}

.hp-text-custom-dark{
    color: #000000;
}


/* Custom Background Colors */
.hp-bg-custom-primary{
    background-color: var(--hp-custom-primary);
}

.hp-bg-custom-secondary{
    background-color: var(--hp-custom-secondary);
}

.hp-bg-custom-tertiary{
    background-color: var(--hp-custom-tertiary);
}

.hp-bg-custom-white{
    background-color: #ffffff;
}

.hp-bg-custom-blue{
    background-color: #F1FAFD;
}

.hp-bg-custom-light{
    background-color: #f3f4f4;
}

.hp-bg-custom-dark{
    background-color: #000000;
}


/* Custom Borders */
.hp-border-custom-primary{
    border: 0.5px solid var(--hp-custom-primary); 
    border-radius: 0.1em;
}

.hp-border-custom-secondary{
    border: 0.5px solid var(--hp-custom-secondary); 
    border-radius: 0.1em;
}

.hp-border-custom-tertiary{
    border: 0.5px solid var(--hp-custom-tertiary); 
    border-radius: 0.1em;
}

.hp-border-custom-white{
    border: 0.5px solid #ffffff; 
    border-radius: 0.1em;
}

.hp-border-custom-light{
    border: 0.5px solid #f1f1f1; 
    border-radius: 0.1em;
}

.hp-border-custom-dark{
    border: 0.5px solid #000000; 
    border-radius: 0.1em;
}


/* Custom Link Colors */
.hp-link-custom-primary{
    color: var(--hp-custom-primary);
}
.hp-link-custom-primary:hover, .hp-link-custom-primary:active, .hp-link-custom-primary:focus{
    color: var(--hp-custom-primary);
}

.hp-link-custom-secondary{
    color: var(--hp-custom-secondary);
}
.hp-link-custom-secondary:hover, .hp-link-custom-secondary:active, .hp-link-custom-secondary:focus{
    color: var(--hp-custom-secondary);
}

.hp-link-custom-tertiary{
    color: var(--hp-custom-tertiary);
}
.hp-link-custom-tertiary:hover, .hp-link-custom-tertiary:active, .hp-link-custom-tertiary:focus{
    color: var(--hp-custom-tertiary);
}

.hp-link-custom-white{
    color: #ffffff;
}
.hp-link-custom-white:hover, .hp-link-custom-white:active, .hp-link-custom-white:focus{
    color: #ffffff;
}

.hp-link-custom-dark{
    color: #000000;
}
.hp-link-custom-dark:hover, .hp-link-custom-dark:active, .hp-link-custom-dark:focus{
    color: #000000;
}


/* Custom Outline Button */
.hp-btn-custom-outline-pill{
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    background-color: #f9f9f9;
    border-color: var(--hp-custom-primary);
    color: black;
  }

.hp-btn-custom-outline-primary{
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background-color: white;
  border-color: var(--hp-custom-primary);
  color: black;
}
.hp-btn-custom-outline-primary:hover, .hp-btn-custom-outline-primary:active, .hp-btn-custom-outline-primary:focus{
   font-weight: 600;
   font-size: 16px;
   background-color: var(--hp-custom-primary);
   border-color: white;
   color: white;
}

.hp-card-custom{
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    background-color: #fffbee;
    border: solid 1.5px #ffc20e;
    color: black;
  }

/* Custom Filled Button */
.hp-btn-custom-filled-primary{
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background-color: var(--hp-custom-primary);
    color: white;
}
.hp-btn-custom-filled-primary:hover, .hp-btn-custom-filled-primary:active, .hp-btn-custom-filled-primary:focus{
     font-weight: 600;
     font-size: 16px;
     background-color: white;
     border-color: var(--hp-custom-primary);
     color: black;
}

.hp-btn-custom-filled-secondary{
    border-radius: 1rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    background-color: var(--hp-custom-secondary);
    border-color: var(--hp-custom-secondary);
    color: white;
}
.hp-btn-custom-filled-secondary:hover, .hp-btn-custom-filled-secondary:active, .hp-btn-custom-filled-secondary:focus{
     background-color: var(--hp-custom-primary);
     border-color: var(--hp-custom-secondary);
     color: white;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.hp-btn-backtotop{
    border-radius: 0.25rem;
    text-decoration: none;
    background-color: #f3f3f3;
    border-color: #DCDCDC;
}
.hp-btn-backtotop:hover, .hp-btn-backtotop:active, .hp-btn-backtotop:focus{
    background-color: #ffffff;
    border-color: #C0C0C0;
}

