/*Phone - Portrait*/
@media screen and (max-width: 320px) {

  #contact {
    background-color: #f8f8f8;
    padding: 50px 0;

  }

  #contact .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 10px -50px -10px #d6d6d6;
  }

  #contact .container .title {
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 50px;
  }

  #contact .container .title h3 {
    font-size: 2.2em;
  }

  #contact .container .title .trait {
    width: 250px;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: #0acc00;
  }

  #contact .container form {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
  }

  #contact .container form input {
    width: 100%;

  }

  #contact .container form input,
  #contact .container form textarea {
    margin: 25px 0;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-bottom: 2px solid #0acc00;
    transition: 0.2s;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #contact .container form textarea {
    width: 100%;
    resize: none;
    height: 100px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  #contact .container form button {
    width: 192px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background-color: #0acc00;
    color: white;
    font-weight: bold;
    font-size: 1.0em;
    cursor: pointer;
    margin-top: 30px;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}