/*Panel 2*/
.panel-2 {
    text-align: center;
}

.panel-2 p {
    margin: 0;
}

/*Panel 3*/
.panel-3 {
    background-color: var(--whitesmoke);
    display: flex;
        justify-content: space-around;
}

.card {
    display: flex;
        flex-direction: column;
        align-items: center;
    text-align: center;
}

.contact-text p {
    font-size: 20px;
    margin: 0px;
}

.contact-img img {
    width: 100%;
        max-width: 300px;
}

/*Panel 4*/

.panel-4 p {
    margin-bottom: 0px;
    text-align: center;
}

/*Media Queries*/
@media only screen and (max-width: 992px) {
    .panel-3 {
        display: flex;
            flex-direction: column;
            align-items: center;
    }
    
    .card {
        border-bottom: 1px solid var(--purple);
        margin: 10px 0px;
        padding-bottom: 10px;
    }
}