.hero__headLine {
    display: none;
}

.hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}


.hero__img {
    width: 200px;
}

.hero__topTitle {
    align-self: flex-start;
    padding: 10px;
    color: #1D5239
}

.hero__viewrPoint {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero__track {
    display: flex;
    width: 100%;
    transition: all .5s ease;
}

.hero__slide {
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    text-align: center;
    font-size: 25px;
}

.hero__dot {
    width: 15px;
    height: 15px;
    background-color: rgba(29, 82, 57, 0.5);
    border-radius: 100px;
    transition: transform .1s ease;
}

.hero__dot--active {
    background-color: rgba(29, 82, 57, 1);
    transform: scale(1.2);
}

.hero__numbers__mobile {
    display: flex;
    justify-content: space-between;
    background-color: #1D5239;
    margin: 10px;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}

.hero__numbers--topic {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    text-align: center;
    width: 40%;
}

.hero__numbers--topic>h3 {
    font-size: 25px;
}

.hero__numbers--topic>p {
    font-size: 12px;
    color:#fff;
    width: max-content;
}


@media (min-width: 1024px) {

    .hero__numbers__mobile,
    .hero__title,
    .hero__cta {
        display: none;
    }

    .hero {
        flex-direction: row;
        position: relative;
        max-width: var(--container-max);
        margin: 0 auto;
    }

    .hero__topTitle {
        font-weight: 1000;
        font-family: 'Ropa Sans';        
        font-size: 50px;

        
    }

    .hero__headLine {
        display: flex;
        flex-direction: column;
        width: 80%;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        align-content: space-around;
        padding-left: 40px;

        gap: 40px;

        & > a {
            align-self: flex-start;
            margin: 40px 0;
            padding: 20px 40px;
            font-size: 2rem;
        }
    }

    .hero__headLine>h1 {
        font-size: 3rem;
        line-height: 1.2;
        transition: opacity .3s ease;
    }

    .hero__headLine--fading {
        opacity: 0;
    }

    .hero__headLine>p {
        font-size: 1.2rem
    }

    .hero__img {
        width: 70%;
    }
}