.about-us {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: justify;
}

.about-us a {
    color: #fa991c;
}

.about-us-info img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

#about-us-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: rgb(28, 118, 143);
    color: white;
    border-radius: 5px;
    text-align: center;
    height: 264px;
}

#about-us-contact-info a {
    color: white;
}

.about-us li {
    list-style: disc;
    color: #002b49
}

.shipping-payment-card {
    height: 264px;
}

.shipping-payment-card .card-header {
    background-color: rgb(28, 118, 143);
    color: white;
}

.shipping-payment-card img {
    height: 70px;
    width: 70px;
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .about-us {
        flex-direction: row;
    }

    .about-us .about-us-info {
        margin-left: 40px;
    }

    .about-us .about-us-info img {
        max-width: 100%;
    }
}