/*------------------ CUSTOM FORM ON CONTACT PAGE START --------------------*/
.form {
    padding-top: 10px;
    font-size: 1em;
}

.form .subtitle {
  font-weight: bold;
  padding-bottom: 10px;
}

.form input {
    width: 100%;
    font-size: 0.9em;
    border-style: solid;
    border-color: #33e1d1;
    border-width: 1px;
}

.form select {
    width: 100%;
}

.form textarea {
    width: 100%;
    border-color: #33e1d1;
}

.form input[type="button"] {
    width: 150px;
    margin-bottom: 5px;
    background-color: #33e1d1;
    color: #FFFFFF;
    border-style: none;
    font-size: 1em;
}

.flex-container {
  padding-bottom: 10px;
  margin: 0;
  list-style: none; 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.flex-item {
  width: 780px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 1em;
}

.flex-item:last-child {
  margin-right: 0;
}

.flex-item-75 {
  width: 75%;
}

.flex-item-50 {
  width: 50%;
}

.flex-item-33 {
  width: 33%;
}

.flex-item-25 {
  width: 25%;
}

.label-xs label{
  font-size: 0.9em;
}

.checkbox input {
  width: auto;
}

@media (max-width: 880px) {  
  .flex-item-75 {
    width: 100%;
  }

  .flex-item-50 {
    width: 100%;
  }

  .flex-item-33 {
    width: 100%;
  }

  .flex-item-25 {
    width: 100%;
  }
  
  .flex-container {
    display: block;
  }
}
/*------------------ CUSTOM FORM ON CONTACT PAGE END --------------------*/