.contact {
    background-color: #191919;
}

.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .contact-content .column {
    width: calc(50% - 20px);
}

.contact .contact-content .left {
    padding-top: 2rem;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
    color: #eeeeee;
}

.contact .contact-content .left .icons .row {
    display: flex;
    height: 70px;
    align-items: center;

}

.contact .contact-content .left .icons .row i {
    font-size: 25px;
    color: #167c4e;
}

.contact .contact-content .left .icons .row .info {
    margin-left: 30px;
}

.contact .contact-content .left .icons .row .info .head {
    font-weight: 500;
    color: #fafafa;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact .contact-content .left .icons .row .info .sub-title {
    color: #eeeeee;
}

.contact .contact-content .right .field {
    width: 100%;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}

.contact .contact-content .right button {
    display: inline-block;
    background-color: #146c45;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 10px;
    border: 2px solid #146c45;
    transition: all .3s ease;
}

.contact .contact-content .right button:hover {
    color: #146c45;
    background: transparent;
}

/* Responsivo */
@media (max-width: 950px) {
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}