.tractor-banner-features-block
{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    position: relative;
}

.tractor-banner-features-block__container
{
    position: relative;    
    aspect-ratio: 47/44;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}

.tractor-banner-features-block__feature
{
    position: absolute;
    
    
    border-radius: 8px;
}

.tractor-banner-features-block__feature svg
{
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
}


.tractor-banner-features-block__indicators
{
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
}

.tractor-banner-features-block__indicator
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    
}
/*el borde solo en el ultimo elemento*/
.tractor-banner-features-block__indicator:not(:last-child)
{
    border-right: 1px solid #BBBABA;
}


h3.tractor-banner-features-block__indicator-label
{
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -2%;
    margin-bottom: 10px;
}

p.tractor-banner-features-block__indicator-value
{
    font-weight: 400;
    font-size: 20px;
    line-height: 148%;
    letter-spacing: 0%;
}


@media only screen and (max-width : 600px) 
{
    .tractor-banner-features-block
    {
        flex-direction: column;
        height: 700px;
        align-items: center;
        justify-content: space-between;
        padding-top: 120px;
        background: linear-gradient(0,rgba(255, 255, 255, 1) 0%, rgba(130, 130, 130, 1) 51%, rgba(255, 255, 255, 1) 100%);
    }

    .tractor-banner-features-block__container
    {
        width: 100%;
        
    }

    .tractor-banner-features-block__indicators
    {
        padding: 1rem 0;
    }


}

@media only screen and (min-width : 601px) and (max-width : 1024px) 
{
    /* Styles for tablet */
    .tractor-banner-features-block {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding-top: 80px;
        padding-bottom: 40px;
        background: linear-gradient(0,rgba(255, 255, 255, 1) 0%, rgba(130, 130, 130, 1) 51%, rgba(255, 255, 255, 1) 100%);
    }

    .tractor-banner-features-block__container {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    .tractor-banner-features-block__indicators {
        padding: 1rem 0;
        position: static;
        width: 100%;
        justify-content: center;
    }

    .tractor-banner-features-block__indicator {
        padding: 1rem 24px;
    }
}


@media only screen and (min-width : 1025px) and (max-width : 1380px) 
{
    /* Styles for small desktop */
    .tractor-banner-features-block {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem 0;
        background-image: url('../img/banner-features-bg-desktop.jpg');
    }

    .tractor-banner-features-block__container {
        width: 400px;
        height: auto;
    }

    .tractor-banner-features-block__indicators {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 1rem 0;
    }

    .tractor-banner-features-block__indicator {
        padding: 1rem 36px;
    }
}


@media only screen and (min-width : 1381px) 
{
    .tractor-banner-features-block__container
    {
        width: 480px;
        height: auto;
    }

    .tractor-banner-features-block
    {
        padding: 4rem 0;
        justify-content: center;
    }

    .tractor-banner-features-block__indicators
    {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .tractor-banner-features-block__indicator
    {
        padding: 1rem 50px;
    }

    .tractor-banner-features-block
    {
        background-image: url('../img/banner-features-bg-desktop.jpg');
    }

}