.contact-section{
	padding: 60px 20px;
}
.contact-section .column-wrapper {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-section .column-wrapper {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) {
    padding-right: 80px;
  }
}
.contact-section .column-wrapper .column:nth-child(1) .sub-title {
  margin: 0 0 5px;
  font-size: 12px;
  text-transform: uppercase;
  color: #3b7e00;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) .sub-title {
    font-size: 16px;
  }
}
.contact-section .column-wrapper .column:nth-child(1) .title {
  margin: 0 0 10px;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) .title {
    font-size: 30px;
  }
}
.contact-section .column-wrapper .column:nth-child(1) p {
  color: #000;
}
.contact-section .column-wrapper .column:nth-child(1) .founder-quotes {
  display: flex;
  margin-top: 60px;
  flex-direction: column;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) .founder-quotes {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
  }
}
.contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(1) {
  margin: 0 auto 15px;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid green;
  padding: 3px;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(1) {
    margin: 0;
  }
}
.contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(1) img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(2) {
    padding: 0 40px;
  }
}
.contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(2) .name {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
}
.contact-section .column-wrapper .column:nth-child(1) .founder-quotes .col:nth-child(2) .position {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper .input-row:not(:first-child){
  margin-top: 10px;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper label {
  color: #000;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper label sup {
  color: red;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper input, .contact-section .column-wrapper .column:nth-child(2) .form-wrapper textarea {
  outline: 1px solid green;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper input:focus, .contact-section .column-wrapper .column:nth-child(2) .form-wrapper textarea:focus {
  outline: 1px solid #e25b4e;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper textarea {
  width: 100%;
  border: none;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper input[type=submit] {
  background-color: green;
  color: #FFF;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.contact-section .column-wrapper .column:nth-child(2) .form-wrapper input[type=submit]:hover, .contact-section .column-wrapper .column:nth-child(2) .form-wrapper input[type=submit]:focus {
  background-color: rgba(0, 128, 0, 0.8);
}
