.tile-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #F5F5F5;
}

.tile-box .tile {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: .15rem solid white;
    border-radius: 10px;
    padding: 1rem;
    margin: 2rem;
    width: 27rem;
}
  
.tile-box .anchor-box a {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    color: black;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    padding-bottom: 1.5rem;
}
  
.tile-box img {
    padding-bottom: 2.5rem;
    width: 15rem;
    margin: 0 auto;
}
  
.tile-box .tile-1 a:hover {
    color: #A72A32;
    transition: color .2s ease-in-out;
}
  
.tile-box .tile:hover {
    border: .15rem solid #A72A32;
    border-radius: 10px;
    transition: border .2s ease-in-out;
}
  
.tile-box .mgl-link {
    border-top: .1rem solid #A72A32;
    padding-top:  2.5rem;
}
  
.tile-box .pfk-link {
    border-top: .1rem solid blue;
    padding-top:  2.5rem;
}
  
.tile-box .tile-1 a:hover {
    color: #A72A32;
    transition: color .2s ease-in-out;
}
  
.tile-box .tile-2 a:hover {
    color: blue;
    transition: color .2s ease-in-out;
}
  
.tile-box .tile-2:hover {
    border: .15rem solid blue;
    border-radius: 10px;
    transition: border .2s ease-in-out;
}

@media (max-width: 950px) {
    .tile-box {
        flex-direction: column;
    }
    .tile-box .tile {
        margin: 2rem 2rem;
        width: inherit;
    }
}

@media (max-width: 400px) {
    .tile-box img {
        width: 10rem;
    }
}
