/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 5px 0; /* Some padding */ 
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    line-height: 22px;
    font-size: 16px;
    padding-left: 10px !important;
    padding-right: 10px !important;
    border-bottom: none;
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #8b99ac;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "Open Sans Condensed",Arial,sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    padding: 5px 65px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

.mtc-collage img{
  margin-bottom: -10%;
}

.mtc-contact-group{
  margin-bottom: -30px;
}

.mtc-contact, .mtc-contact h4 {
    font-family: "Open Sans Condensed",Arial,sans-serif;
}

@media (min-width: 780px) {
  .mtc-contact{
      border-right: 1px solid #fff;
  }
}

.mtc-align-center{
    text-align: center;
}

/* Add a background color and some padding around the form */
/*.container {
    color: white;
    font-family: "Open Sans Condensed",Arial,sans-serif;
    background-color: #012c57;
    padding: 0px;
    width: 100%;
    }

  .container-child {
    display: inline-block;
    padding: 1rem 1rem;
    vertical-align: top;
    width: 45%;
  }
  @media (max-width: 1190px) {  
    .container-child {
      width: 100%;
      padding: 0;
    }
  }

.mtc-required:after {
    content:" *";
    color: red;
  }
*/
/* Checkbox */

/* Customize the label (the chkcontainer) */
.chkcontainer {
    display: block;
    position: relative;
    padding-top: 2px;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .chkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border: solid white;
    border-width: 3px 3px 3px 3px;
    margin-left: 2px;
  }
  
  /* On mouse-over, add a grey background color */
  .chkcontainer:hover input ~ .checkmark {
    border: solid #8b99ac;
    border-width: 3px 3px 3px 3px;
  }
  
  /* When the checkbox is checked, add a blue background */
  .chkcontainer input:checked ~ .checkmark {
    background-color: #8b99ac;
    border: solid white;
    border-width: 3px 3px 3px 3px;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .chkcontainer input:checked ~ .checkmark:after {
    display: block;
  }
