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

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


.headline-box {
    display: inline-block; /* Ensure the box size fits the content */
    border: 1px solid #FCB50A; /* Light border color */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center the text inside the box */
  }

/* Marquee */
:root {
    --marquee-elements-displayed: 7;
    --marquee-width: 100%;
    --marquee-height: 100px;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
}

.marquee:after {
    right: 0;
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4);
    white-space: nowrap;
}

.marquee-content li img {
    width: 100%;
}

@media (max-width: 600px) {
    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }

    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}


/* Custom Fonts */
@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('fonts/Aileron-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


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



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



/* Color Variables */
:root {
    --hp-custom-primary: #0E56B4;
    --hp-custom-secondary: #009D6D;
    --hp-custom-tertiary: #FCB50A;
}

/* 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;
}

.hp-text-custom-semidark{
    color: #4A4A4A;
}


/* 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: #F7F7F7;
}

.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-primary{
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  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{
   background-color: var(--hp-custom-primary);
   border-color: white;
   color: white;
}


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



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

.back-to-top-2 {
    position: fixed;
    bottom: 20px;
    right: 90px;
    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;
}

