
.home-hero-violator {
    padding: 5px 10px;
    align-items: center;
    background-color: var(--color-fern);
    display: flex;
    padding-left: 5px;
    text-align: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    min-height: 70px;
}

    .home-hero-violator p {
        color: var(--color-white);
        font-size: 18px;
        margin: 0;
    }

.home-hero .container{
    padding: 0;
    width: 100%;
    max-width: 1400px;
    position: relative;
}

/**/

.h1 {
    color: #EB0088;
    font-size: 50px;
    line-height: 61px;
    font-weight: 700;
    margin-bottom: 25px;
}

.h2 {
    color: #00b7ba;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
}

.home-hero h2 strong {
    font-weight: 900;
}


.home-hero {
    overflow: hidden;
    background: #f7f9f8 url('../../images/hero1_bg.jpg');
    background-size: cover;
    min-height: 480px;
}

    .home-hero .content {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

.hero-image-desktop {
    min-height: 480px;
    position: relative;
    flex: 0 0.5 544px;
}
        .hero-image-desktop img {
            top: 50%;
            transform: translateY(-50%);
            left: -70px;
            position: absolute;
            width: 135%;
            max-width: unset;
        }

.home-hero .actor {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 0px 10px;
    font-size: 10px;
}

.home-hero .copy {
    padding: 20px 15px;
    max-width: 595px;
    margin: 0 auto;
}

    .home-hero h1 {
        margin: 0 auto;
        max-width: 520px;
        text-align: center;
    }
.home-hero h2 {
    text-align: center;
}

.tabs {
    max-width: 1000px;
    margin: 60px auto 0px auto;
    display: flex; 
    justify-content: space-between;
}

.tab {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .tab .tab_cta {
        margin-top: auto;
    }
    .tab img {
        max-width: 53px;
        margin-inline: auto;
    }

    .tab p {
        margin-top: 15px;
        font-size: 24px;
        line-height: 34px;
        color: #707070;
    }

.tab_cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 34px;
    position: relative;
    margin: 0 auto;
    margin-top: 30px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    background: #EB0088;
    border-radius: 25px;
}

    .tab_cta span {
        position: relative;
        left: -10px;
    }


    .tab_cta::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background: url('../../images/circle_arrow.svg');
        background-size: contain;
    }

    .hero-image-mobile {
        display: none;
    }


@media (max-width: 760px) {

    .tabs {
        flex-direction: column;
    }

    .tab + .tab {
        margin-top: 60px;
    }

    .home-hero .content {
        flex-direction: column;

    }

    .home-hero h1 {
        padding-top: 40px;
    }
    .home-hero h2 {
        padding: 0;
        margin: 0;
        margin-top: 40px;
    }

    .hero-image-desktop {
    display: none;
    }

    .hero-image-mobile {
        display: block;
        margin-bottom: 10px;
    }

    .tabs {
    }

}



