.large-tile {
    align-items: center;
    display: flex;
}

.large-tile p {
    color: #17335d;
    font-family: "Roboto Slab", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.large-tile h3 {
    font-family: "Roboto", Sans-serif;
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

.large-tile .col { float: left; }
.large-tile .col:first-of-type { width: 30%; }
.large-tile .col:nth-of-type(2) { width: 66%; }

.large-tile img { transition-duration: 0.3s; }

.large-tile img:active, .large-tile img:focus, .large-tile img:hover {
    transform: scale(1.1);
}

@media (max-width: 800px) {
    .large-tile  { 
        display: block;
        text-align: center;
    }
    .large-tile .col { width: 100% !important; }
}