.paragraph--type--hero{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    aspect-ratio: 1 / 1.5;
    margin-bottom: 2rem;
}
@media(min-width: 576px){
    .paragraph--type--hero{
        aspect-ratio: 2 / 1;
    }
}
@media(min-width: 1024px){
    .paragraph--type--hero{
        margin-bottom: 6rem;
    }
}
.paragraph--type--hero .hero-image,
.paragraph--type--hero .hero-text{
    grid-area: 1 / 1 / 2 / 2;
}

.paragraph--type--hero .hero-image > div{
    aspect-ratio: 1 / 1.5;
    display: block;
    height: 100%;
    width: 100%;
}
@media(min-width: 576px){
    .paragraph--type--hero .hero-image > div{
        aspect-ratio: 2 / 1;
    }
}

.paragraph--type--hero .hero-image > div img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.paragraph--type--hero .hero-text{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90rem;
    padding: 0 2.4rem;
    margin: 0 auto;
}

.paragraph--type--hero .hero-text h1{
    font-size: 4.2rem;
}
@media(min-width: 1024px){
    .paragraph--type--hero .hero-text h1{
        font-size: 6rem;
    } 
}

.paragraph--type--hero .hero-text img{
    width: 13.5rem;
    height: auto;
}
@media(min-width: 1024px){
    .paragraph--type--hero .hero-text img{
        width: 17rem;
        height: auto;
    }   
}

@media (max-width: 1100px) {
    .paragraph--type--hero  .btn-big-inside a:not(.btn-white-custom) {
        width: auto;
    }
}

.paragraph--type--hero  .btn-big-inside a:hover{
    box-shadow: white 0px 0px 0px 2px inset;
    color: white;
}

