  /* COMPANY HEADER */
  .page_heading {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .breadcrumb {
    display: flex;
    color: #D61F29;
    text-transform: uppercase;
    font-weight: 700;
    padding-left: 25px;
  }

  /* COMPANY HEADER END */

  /* APPLY */
  .contactUs {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 25px ;
  }

  .map {
    display: flex;
    flex-direction: column;
    padding: 25px 0;
  }
  .phoneEmail, .address {
    display: block;
    padding: 25px 0 0 0;
  }
  .phoneEmail a {
    display: block;
    text-decoration: none;
    color: black;
  }

  .heading {
    font-weight: 600;
    font-size: 2em;
    line-height: 2.5rem;
  }

  .apply {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    margin: 25px 0;
  }
  input[type=text],input[type=email] {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ccc;
  }
  input[type=submit]{
    border: none;
    border-radius: 50px;
    background: url(../icons/white-arrow.svg) #D61F29;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 90% center;
    color: white;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 1.1em;
    display: flex;
    text-align: left;
  }
  textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: 100px;
  }
  
  form a {
    color:black;
  }

  /* APPLY END */

@media only screen and (min-width: 768px) {

  .page_heading {
    width: 80%;
    margin: 0 auto;
  }
  .breadcrumb {
    padding: 0;
  }

  /* APPLY */
  .contactUs {
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    column-gap: 10%;
    padding-bottom: 50px;
  }
  .apply {
    justify-content: start;
  }
  .map, .apply {
    width: 50%;
  }
  /* APPLY END */
}