<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tileWrap {
    position: relative;
    padding: 30px 0px;
    display: block;
}

.tileTitleMain{    
    text-align: center;
    padding: 10px;
}


.tileTitleMain h1 {
    font-size: 42px;
    margin: 15px 0;
    color: #000;
    font-weight: 800;
}



.tileContainer{
    width: 100%;
    text-align: center;
}

.tile {
    position: relative;
    padding:20px;
    display: inline-block;
}

.tileContainer .tile {
    width: 26%;
    margin: 0.5%;
    min-height: 121px;
    background-color: #0d5c91;
    color: #fff;
    justify-content: center;
    -webkit-transition: background-color ease 100ms;
    transition: background-color ease 100ms;
    text-decoration: none;
    vertical-align: top;
}
.tileContainer .tile:hover {
    background-color: #3285c7;
}

.tileIcon{
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}

.tileIcon img {
    width: 65px;
    height: 65px;
}

.tileTitle{
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
}

@media screen and (max-width: 768px) {

.tileContainer .tile {
    min-height: 163px;
}
}

@media screen and (max-width: 480px) {
.tileContainer .tile {
    width: 47%;
    margin: 1.5%;
}
}</pre></body></html>