.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
}


.row>.col-6 {
    width: 50%;
}

.logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-col img {
    max-width: 50%;
    height: auto;
}

.text-col-desktop {
    display: flex;
    font-size: 18px;
    color: #22262f;
    text-align: justify;
    flex-direction: column;
    justify-content: center;
    padding-right: 5em;
    padding-top: 1em;
    font-family: "Montserrat", sans-serif;
}

.text-col-mobile {
    display: none;
}

@media (max-width: 500px) {
    .text-col-desktop {
        display: none;
    }

    .text-col-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #22262f;
        text-align: justify;
        flex-direction: column;
        margin: 1em 2em 0.5em 2em;
        font-family: "Montserrat", sans-serif;
    }
}