/* ============================================================
   ABOUTUS.CSS — About Us Page Only
   ============================================================ */

/* .boxt base is in main.css */
h1 { font-size: 40px; }
h2 { font-weight: 500;  font-size: 30px; }
h3 { font-size: 30px; }
p  { font-size: 19px; }

.boxt h2 { font-size: 20px; }

.names {
    display: flex;
}

.names p {
    margin-left: 10px;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    h3 { font-size: 22px; }
    p  { font-size: 16px; }

    .names { flex-direction: column; }
    .names p { margin-left: 0; }
}

@media (max-width: 480px) {
    h1 { font-size: 22px; }
}
