:root {
    --hero-white: #FFFFFF;
    --hero-green: #00A443;
    --hero-dark: #00402A;
    --hero-grey: #5F6971;
    --hero-brown: #615D5A;
    --hero-green-light: #DCEBE1;
    --hero-sand: #FFF5EC;
}

#hero {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

#hero * {
    font-family: 'IberPangea' !important;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#hero h2 {
    margin-top: 0 !important;
}

#hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#hero ul li:before {
    content: none !important;
    display: none !important;
}

#hero img {
    display: block;
    width: 100%;
}

#hero .hero_media {
    position: relative;
    width: 100%;
    height: 375px;
    overflow: hidden;
    border-radius: 15px;
}

#hero .hero_media:before {
    content: '';
    display: none;
    background-color: var(--hero-white);
    border-radius: 36px 36px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 25px;
}

#hero .hero_media img,
#hero .hero_media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#hero .hero_content {
    padding: 48px 16px 24px;
}

#hero .hero_breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 19px;
}

#hero .hero_breadcrumb_home {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/ico-home.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-decoration: none;
    text-indent: -9999px;
    overflow: hidden;
    margin-right: 8px;
}

#hero .hero_breadcrumb_item {
    color: var(--hero-grey);
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    display: flex;
    margin-right: 4px;
}

#hero .hero_breadcrumb_item:before {
    content: '>';
    display: block;
    margin-right: 3px;
}

#hero .hero_breadcrumb_current {
    color: var(--hero-green);
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    display: flex;
}

#hero .hero_breadcrumb_current:before {
    content: '>';
    display: block;
    color: var(--hero-grey);
    font-weight: 400;
    margin-right: 3px;
}

#hero .hero_kicker {
    color: var(--hero-dark);
    font-size: 32px;
    line-height: 1.125;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    margin-bottom: 16px;
}

#hero .hero_title {
    color: var(--hero-green) !important;
    font-size: 40px;
    line-height: 1.05;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    text-wrap: balance;
    width: 100%;
    margin-right: auto;
    margin-bottom: 32px;
}

#hero .hero_title strong {
    font-weight: 600;
}

#hero .hero_tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

#hero .hero_tags_item {
    border-radius: 62px;
    background: var(--hero-green-light);
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 10px 16px;
    display: flex;
    align-content: center;
    color: var(--hero-dark);
    font-size: 16px;
    line-height: 1.43;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

#hero .hero_excerpt {
    border-radius: 15px;
    background: var(--hero-sand);
    padding: 24px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

#hero .hero_excerpt p {
    color: var(--hero-brown);
    font-size: 18px;
    line-height: 1.33;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
}

#hero .hero_excerpt p a {
    color: var(--hero-brown);
}

#hero .hero_excerpt p strong {
    font-weight: bold;
}

#hero .hero_excerpt p em {
    font-style: italic;
}

#hero .hero_excerpt p + p {
    margin-top: 8px;
}

#hero .hero_body p {
    color: var(--hero-brown);
    font-size: 17px;
    line-height: 1.43;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    margin-bottom: 21px;
}

#hero .hero_body p a {
    color: var(--hero-brown);
}

#hero .hero_body p strong {
    font-weight: bold;
}

#hero .hero_body p em {
    font-style: italic;
}

@media (min-width: 700px) {

    #hero .hero_content {
        padding-left: 24px;
        padding-right: 24px;
    }

    #hero .hero_inner {
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (min-width: 1024px) {

    #hero .hero_media {
        height: 230px;
    }

    #hero .hero_media:before {
        border-radius: 48px 48px 0 0;
    }

    #hero .hero_title {
        font-size: 55px;
        line-height: 1;
    }

    #hero .hero_excerpt {
        padding: 32px;
    }

    #hero .hero_excerpt p {
        font-size: 20px;
        line-height: 1.30;
    }

}


@media (min-width: 1440px) {

    #hero .hero_media {
        height: 411px;
    }

}