<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.about-us{
    margin-top: -20px;
}

.about-us h2{
    text-align: center;
    color: #2F337C;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about-us p{
    width: 50%;
    margin-left: 25%;
    text-align: center;
    color: #1D1E1E;
    margin-top: 10px;
}

.card-holder{
    margin-top: 50px;
    display: flex;
    padding: 0 85px;
    justify-content: space-around;
    margin-bottom: 100px;
}

.card{
    padding: 35px 50px;
    width: 20%;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}   

.card h5{
    color: #2E3178;
    font-size: 17px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.card p{
    width: 110% !important;
    margin: 20px auto 50px auto ;
    font-size: 15px;
    color: #1D1E1E;
    line-height: 20px;
}

.grid-item{
    padding: 0 7%;
    margin-top: 50px;
    margin-bottom: 70px;
    display: grid;
    row-gap: 35px;
    column-gap: 3%;
    grid-template-columns: 30% 30% 30%;
}

.grid-item div{
    height: 200px;
    background-size: cover; 
    border-radius: 5px;  
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.2);
}

.grid-item div p{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
    color: #fff;
    margin-top: 45px;
    text-align: center;
    font-weight: 600;
    height: 50px;
}

.grid-item div button{
    margin-left: 28%;
    margin-top: 30px;
    width: 44%;
    color: #fff;
    height: 40px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 26px;
    cursor: pointer;
}
</pre></body></html>