/* Contact A Sales Rep */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.sales-representative {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-top: 5vh;
    margin-left: 10vw;
    margin-right: 10vw;

    width: 100vw;
    background-color: white;
}

.rep {
    display: flex;
    flex-direction: column;
    margin-top: 4vh;
    margin-bottom: 2vh;
}

.sales-representative-info {
    color: black;
    font-family: sans-serif;
    margin-bottom: 2vh;
    font-size: 1.5em;
    text-align: center;
    color: hsl(207.04, 31%, 44.9%);
}

.rep-bold {
    font-weight: bold;
    color: black;
    font-family: sans-serif;
    margin-bottom: 2vh;
    font-size: 1.7em;
    text-align: center;
    color: hsl(207.6, 76.32%, 26.15%);
}

@media (max-width: 768px) {
    .sales-representative {
        margin-top: 6vh;
    }

    .sales-representative-question {
        font-size: 3vh;
    }

    .sales-representative-info {
        font-size: 2vh;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */