/* ---------- ABOUT PAGE ---------- */

main {
    margin-top: 150px;
}

/* --- SECTION 1 - HERO IMG --- */

.about-hero {
    position: relative;
    width: 100vw;
    height: 80vh;

    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    margin-top: 0;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --- SECTION 2 - TEXT --- */

.about-text {
    display: flex;
    justify-content: flex-end;
    
    padding-top: var(--margin);

    font-family: 'Switzer-Regular';
}

.text-container {
    max-width: 510px;
    text-align: right;
}

.text-container p {
    font-size: var(--dropdown-font-size);
    line-height: 1.6;

    margin-top: var(--half-margin);
}