.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 70vh;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    padding: 25px 0 0 0px;
    /* border-radius: 10px; */
    /* border: 1px solid rgba(122, 122, 122, 0.5); */
    box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.2);
    background-color: white;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
    /* transform: translateX(-50px); */
}

.contact-item img {
    opacity: .3;
    margin-right: 10px;
    user-select: none;
    width: 30px;
}

.contact-item:nth-child(3) img {
    width: 35px;
    margin: 0 9px 0 -3px;
}

p {
    font-size: 1.3rem;
    color: rgb(69, 99, 100);
    margin: 0;
}

@media(max-width: 500px) {

    .contact-wrapper {
        align-items: start;
    }

    .contact-item {
        transform: translateX(10vw);
    }

    p {
        font-size: 1.3rem;
    }
}