
.contact-mail {
    display: grid;
    grid-template-columns: 25% 40%;
    grid-template-rows: max-content;
    justify-content: center;
    align-items: center;
    background-color: #2e4159;
}

.contact-mail a{
    text-decoration: none;
    color: #c3cbdc
}

.contact-mail .contact-network {
    color: #c3cbdc

}

.contact-mail .contact-network p {
    margin-bottom: 5px;
    font-family: Altone-Regular;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.contact-mail .contact-network svg {
    fill: #bf8136;
}


.contact-mail .network-icon svg {
    fill: #bf8136;
    padding-right: 10px;
    margin-top: 10px;
}


.email-contato {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.email-contato input {
    height: 50px;
    padding-top: 0.375rem;
    padding-right: 0.75rem;
    padding-bottom: 0.375rem;
    padding-left: 0.75rem;
    margin-bottom: 6px;
    border: 0;
    background-color: #c3cbdc;

}

.email2-contato textarea {
    width: 100%;
    height: 80px;
    border: 0;
    margin-top: 2px;
    margin-right: 20px;
    margin-bottom: 8px;
    background-color: #c3cbdc;

}

.email2-contato button {
    width: 100%;
    text-align: center;
    margin: 0 auto;

    background-color: #bf8136;
    color: #ffffff;
    border: 0;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    --border-size: 2px;
    --accent-color: #d26b0a;

}

.email2-contato button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-color: var(--accent-color);
    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
  }
  .email2-contato button:hover::before,
  .email2-contato button:focus::before {
    transform: scaleX(1);
  }
  .email2-contato button {
    transition: color 300ms ease-in-out;
    z-index: 1;
  }
  
  .email2-contato button:hover,
  .email2-contato button:focus {
    color: white;
  }



.button-contato{
    display: grid;
    justify-content: end;
}

.email2-contato{
    margin-left: 8px;
    margin-top: 30px;
}

.contact-network svg{
    margin-right: 10px;
}

@media only screen and (max-width: 760px) {

    .email-contato {
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: auto auto auto auto auto;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contact-mail {
        display: grid;
        grid-template-columns: 80%;
        grid-template-rows: auto auto;
        justify-content: center;
        align-items: center;
        background-color: #2e4159;
    }

    .contact-mail .contact-network {
        color: #fff;
        text-align: center;
        order: 2;
    
    }

    .contact-mail .email2-form {
        color: #fff;
        text-align: center;
        order: 1;
    
    }


}