﻿/* --------------------------------------------------------------------------*\
    Careers Page

    Page-specific styles for careers page
\* --------------------------------------------------------------------------*/

#careers a {
    text-decoration: none;
}

#vet-banner {
    text-align: center;
    background-color: var(--accent-color);
}

#careers-img-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    object-fit: contain;
    height: 100%;
    width: 50%;
    object-position: center center;
}

.cta-button {
    width: 500px;
    height: 75px;
    font-size: 1.5rem;
}

@media(max-width: 768px) {
    #careers-img-wrapper {
        width: 100%;
    }

    .cta-button {
        font-size: 1.2rem;
        height: 70px;
    }
}

@media(max-width: 384px) {
    .cta-button {
        font-size: 1rem;
    }
}

@media(max-width: 330px) {
    .cta-button {
        height: 85px;
    }
}