/* Hero Section */
.hero-section {
    background-image: url('https://picsum.photos/seed/hero-bg/1920/1080');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: var(--ap-text-light);
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    align-items: center;
    align-content: center;
    position: relative;
    min-height: 690px;


    .breadcrumbs-container {
        margin-top: 100px;

        a {
            color: white;
            text-decoration: none;

        }
    }

}
/**
 */
.hero-section:before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.37);
    z-index: 1;
}

.hero-section *{
    z-index: 2;
}

.hero-section .breadcrumbs-container{
    width: 100%;
    position: absolute;
    top: 2%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    line-height: 1;

}

.hero-subtitle {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-features {
    margin-top: 80px;
}

.feature-card {
    background-color: var(--ap-primary);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;

    .feature-title{
        display: block;
        font-weight: bold;
        text-align: left;
        color: white;
        text-decoration: none;

        &:before{
            position: absolute;
            content: '';
            display: block;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

    }
    .feature-description{
        font-size: 0.9em;
        text-align: left;
        line-height: 1.2;
    }

    &:hover{
        background: #032F56;
    }
}
.feature-card img{
    width: 105px;
    height: 89px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 10px;
}

.feature-icon {
    margin-right: 15px;
    border-radius: 5px;
}


.hero-features{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}