#contact {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    height: 20rem;
    width: 100vw;
    align-items: center;
    background: #f4f6fa;
}
.contact-img {
    background: url(../../imgs/body/contact-283764.jpg);
    background-size: cover;
    width: 45%;
    height: 100%;
}
.contact-text {
    width: 55%;
    padding: 2rem 2rem 2rem 3rem;
    font-size: 1.2rem;
    transform: translateY(-1rem);
}
.contact-text h2 {
    margin-bottom: 2rem;
}
.contact-text a {
    color: rgb(255, 37, 190);
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.contact-text a i {
    margin-right: .5rem;
    font-size: 1.5rem;
}
.contact-text a:last-child i {
    margin-right: .5rem;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    #contact {
        flex-direction: column-reverse;
        height: auto;
    }
    .contact-img {
        height: 15rem;
        width: 100%;
    }
    .contact-text {
        width: 90%;
        padding: 1rem;
        transform: none;
    }
}