/* *{
    border: solid red;
} */
.about-us-page {
    margin: 0;
    position: absolute;
    display: inline;
    text-align: center;
    height: 100vh;
    width: 100vw;
    top: 20vh;
}

.div-about-us {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.div-about-us-tile {
    position: grid;
    place-items: center;
    cursor:pointer;
    padding-bottom: 30px;
}

.div-about-us-tile h2 {
    font-size: 20px;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 120;
    line-height: 1.1;
    letter-spacing: 6px;
    text-align: center;
}
.div-about-us-tile h4 {
    font-size: 16px;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 120;
    color: dimgray;
    line-height: 1.1;
    letter-spacing: 2px;
    text-align: center;
}

.div-about-us-tile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.div-about-us-tile a:link {
    color:black;
    text-decoration: white;
}
.div-about-us-tile a:visited {
    color:black;
    text-decoration: white;
}
.div-about-us-tile:hover{
    size: 110%;
    border-radius:50%;
    filter: drop-shadow( 0 5px 5px #2c6daa);
    transition: all 0.2s linear;
}

.div-about-us-tile li {
    position: relative;
}