    
.text-img{    
    display:grid;
    grid-template-columns: 1.5fr 1fr; 
    column-gap: 50px;
}

.text-img img{
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 400px;
}

.text-img h4{
    font-weight: bold;
    text-transform: uppercase;
}

.text-img p.textAccent{
    color: var(--secondaryColor);
    font-family: "Jura", sans-serif;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

p.blocText{
    margin: 0;
}

/* Apparence */ 
.text-img.right{    
    grid-template-columns: 1fr 1.5fr; 
}
.text-img.right .imgPart{
    order: 2;
}
.text-img.right .txtPart{
    order: 1;
}

/* Mobile */
@media screen and (max-width: 769px) {
    .text-img, .text-img.right {
        grid-template-columns: 1fr; 
        column-gap: 0px;
    }
    .text-img .txtPart{
        padding-right: 0;
    }
    .text-img.right .imgPart{
        order: 1;
    }
    .text-img.right .txtPart{
        order: 2;
    }
}
