.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative;
}

.hero-breadcrumb {
    display: flex;
}

.hero-content {
    text-align: left;
    max-width: 50%;
    padding: 20px;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/** media 768 */
@media (max-width: 1140px) {
    .hero-content {
        flex-direction: column;
        max-width: 100%;
        gap: 15px;
    }
}

/** Hero Buttons Wrapper */
.hero-buttons-wrapper {
    display: flex;
}

.hero-stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
    width: min-content;
    position: absolute;
    bottom: max(10%, 30px);
    right: max(10%, 30px);
}

/** media */
@media (max-width: 450px) {
    .hero-stats-wrapper {
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero-headline {
    font-family: 'EuropaBold', sans-serif;
    font-size: 2.5rem;
    color: #1F2E4C;
    margin-bottom: 20px;
}

.hero-headline h1,
.hero-headline h2,
.hero-headline h3,
.hero-headline h4,
.hero-headline h5,
.hero-headline h6 {
    margin: 0 0 0px 0;
    padding: 0;
    font-size: unset;
    font-weight: unset;
}


.hero-description {
    font-family: 'EuropaRegular', sans-serif;
    font-size: 1.2rem;
    color: #1F2E4C;
    margin-bottom: 20px;
}

.hero-button {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'EuropaBold', sans-serif;
    color: #fff;
    background-color: #1F2E4C;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 3;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
}

.hero-button:hover {
    background-color: #1F2E4C;
}

.hero-button.animation-hero-border-wave-effect {
    position: relative;
}

.hero-button.animation-hero-border-wave-effect:before{
      content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    border: 3px solid #ffffff;
    z-index: -1;
    animation: hero-border-wave 2s infinite linear;
    
    
}

@keyframes hero-border-wave {

    0% {
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.07) scaleY(1.2); 
        opacity: 0.5;
    }
    100% {
        transform: scaleX(1) scaleY(1);
        opacity: 1;
    }

}

.hero-button-icon {
    margin-left: 15px;
    margin-right: 10px;
}

/** Primary button styles */
.hero-button-primary {
    background-color: #1F2E4C;
    color: #fff;
}

.hero-button-primary:hover {
    background-color: #162238;
}

/** Secondary button styles */
.hero-button-secondary {
    background-color: #fff;
    color: #1F2E4C;
    border: 2px solid #1F2E4C;
}

.hero-button-secondary:hover {
    background-color: #f0f0f0;
}

.hero-stat-icon i{
    font-size: 20px;
    color: #1F2E4C;
}

.hero-stat-item {
    color: #1F2E4C;
    font-family: 'EuropaRegular', sans-serif;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 20px;
    border-bottom: 1px solid #f7f7f7;
}

.hero-stat-item:first-child {
    padding: 15px 20px 10px 20px;
}

.hero-stat-item:last-child {
    padding-bottom: 15px;
    border-bottom: none;
}

.hero-stat-icon {
    margin-right: 10px;
}

.hero-stat-number {
    font-weight: bold;
    margin-right: 5px;
}

a.hero-stat-link{
    color: #1F2E4C;
    text-decoration: none;
}

a.hero-stat-link:hover {
    text-decoration: underline;
}