.vert-txt-align-flex{    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-responsive-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.row-responsive-flex > img{
    min-width: 50%;
    /* TODO - add more padding to outside so roughly 50/50 that way like a grid */
    margin: auto;
}
.row-responsive-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
}

@media (width < 600px) {
    .row-responsive-flex{
        flex-direction: column;
    }
    .row-responsive-flex > img{
        width: 100%;
    }

    .row-responsive-grid{
        display: grid;
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: 1fr;
    }
}


/* .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
} */