/* Contact */

.contact-main {
  overflow: hidden;
  height: 100vh;
}

h1 {
  padding-bottom:10px;
}

.contact-content {
  padding-top: 7vh;
  overflow: hidden;
  background-color: #CFDCD4;
}

.contact-div {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: calc(100vw - 100px)
}

.contact-label {
  color: #646464;
}

.contact-text a{
  color: #15553E;
}

input {
  border: none;
  border-bottom: solid 1px #15553E;
  width: 100%;
  margin-bottom: 1em;
  text-align: left;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 100;
  font-size: 16px;
  -webkit-appearance: none !important;
   -moz-appearance: none !important;
   appearance: none !important;
   border-radius: 0;
  padding-bottom: 5px;
  padding-left: 5px;
  background-color: transparent;
}

::-webkit-input-placeholder {
   text-align: left;
}

:-moz-placeholder { /* Firefox 18- */
   text-align: left;
}

::-moz-placeholder {  /* Firefox 19+ */
   text-align: left;
}

:-ms-input-placeholder {
   text-align: left;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
     -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

.send-button {
  font-size: 2vw;
  border: solid 2px #15553E;
  text-align: left;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: #15553E;
  margin-top: 1em;
  background: transparent;
  cursor: pointer;
  width: auto;
  padding: 5px;
}

.send-button:hover {
  color: #646464;
  border-color: #646464;
}

.label {
  margin-bottom: 1vw;
  margin-top: 1vw;
  color: #646464;
}

.label-top {
  margin-top: 0;
}


/* Checkbox */

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: #15553E;
}

/* Customize the label (the container) */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bottom-checks {
   margin-bottom: 0;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
  border: solid 1px #15553E;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #15553E;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #15553E;
}

textarea {
      border-image: initial;
    border: 1px solid rgb(21, 85, 62);
    width: 100%;
    margin: 0px 0px 15.9943px;
    text-align: left;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 100;
    font-size: 16px;
    border-radius: 0px;
    padding-bottom: 5px;
    padding-left: 5px;
    background-color: transparent;
    -webkit-appearance: none !important;
    height: 96px;
    resize:vertical;
}

.charity {
  margin-bottom: 2em;
}



@media (max-width: 960px) {
 .contact-form {
   -ms-grid-column: 2;
   -ms-grid-column-span: 10;
   grid-column: 2/12;
   -ms-grid-row: 1;
   -ms-grid-row-span: 1;
   grid-row: 1/2;
 }

 .contact-text {
   -ms-grid-column: 2;
   -ms-grid-column-span: 10;
   grid-column: 2/12;
   -ms-grid-row: 2;
   -ms-grid-row-span: 1;
   grid-row: 2/3;
   margin-bottom: 2em;
 }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-form {
    width: 45%;
  }

  .contact-text {
    width: 45%;
  }

  .contact-content {
    display: flex;
    justify-content: space-around;
  }

}

