﻿.member .m-title {
    
    width: 100%;
    margin: 10px 0px;
    font-size: 15px;
    height: 40px;
 }
.single-line {
	padding: 15px 0px 0px 0px;
}

 .member .m-name {
    width: 100%;
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    font-weight: 600;

 }

 /*.member .m-title:after{
 	height: 1px;
    display: block;
    width: 100%;
    background: #fff;
    content: '';
    margin-top: 10px;

 }*/

 .member{
 	height: 100%;
 	 text-align: center;

 }

 .member-section{
 	width: 100%;
 	margin: 0 auto;

 }

 .custom-margin{

margin: 0;
 }

 @media screen and (max-width: 750px){
 	.custom-margin{margin-bottom: 20px;}

 }

 /* -------------------------------- 

Form

-------------------------------- */
.cd-form {
  width: 90%;
  //max-width: 700px;
  margin: 0 auto;
  margin-top: 0;
  color: white;
  background-color: rgba(225, 225, 225, 0.1);

    padding: 30px;


  h3{

    text-align: center;
    font-size: 1.3vw;
  }
  span{
    font-size: 1rem;
    color:  #00ffd8;
  }
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {

}
.cd-form legend {
  padding: 1.5rem;
  margin-bottom: 20px;
  font-size: 1.2rem;
  background-color: #7fc6cc;
  text-align: center;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.2rem;
  color:white;
  margin-bottom: 10px;
  line-height: 2rem;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  color:#9aacb1;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #9f2c9f;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/form/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 1px dotted;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #00ffd8;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("../img/form/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("../img//form/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 12vw;
  resize: vertical;
  overflow: auto;
  border: 1px dotted;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  font-size: 3vw;
  background-color:#00ffd8;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="submit"]:hover {
 background-color: rgba(17,98,102,.8);
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
  
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../img/form/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}




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

  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 

Custom icons

-------------------------------- */


.cd-form .icon input, .cd-form .icon textarea {
  padding-left: 54px !important;
  font-size: 3vw;
}
.cd-form .user {
  background: url("../img/form/cd-icon-user.svg") no-repeat 16px center;
  
}
.cd-form [required].user {
  border: 1px dotted;
  background: url("../img/form/cd-icon-user.svg") no-repeat 16px center, url("../img/form/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../img/form/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../img//form/cd-icon-company.svg") no-repeat 16px center, url("../img/form/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../img/form/cd-icon-email.svg") no-repeat 16px center;
  border: 1px dotted;
}
.cd-form [required].email {
  background: url("../img/form/cd-icon-email.svg") no-repeat 16px center, url("../img/form/cd-required.svg") no-repeat top right;
   border: 1px dotted;
}
.cd-form .budget {
  background: url("../img/form/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("../img/form/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../img/form/cd-icon-message.svg") no-repeat 16px 16px, url("../img/form/cd-required.svg") no-repeat top right;
}

/* -------------------------------- 

FLoating labels 

-------------------------------- */
.js .floating-labels div {
  margin: 28px 0;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.4rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
  padding-right: 10px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.4rem;
  top: -1.8vw;
  left: 0 !important;
  position: initial;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top:1rem;
    line-height: 2rem;
  }

  .cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  
  font-size: 1.4rem;
      }
      .cd-form input[type="submit"]{
        font-size: 1.5vw;
      }

     
}

@media only screen and (max-width: 767px) {

    .cd-form {
    width: 100%;
        h3{
          font-size: 1rem;
        }
        span{
          font-size: .8rem;
        }
    }
    .js .floating-labels .cd-label{
      top: 14px;
      font-size: .9rem;
      line-height: 1.5rem;

    }
    .cd-form textarea{
      min-height:26vw; 
    }
    .js .floating-labels .icon .cd-label{
      left: 50px;
      line-height: 1.2rem;
      }

    .js .floating-labels .cd-label.float {
      font-size: .9rem;
    }
    
    .cd-form h4, .cd-form .cd-label{
      font-size: .9rem;
      line-height: 1.5;
    }

  .cd-form input, .cd-form textarea, .cd-form select, .cd-form label{
    font-size: .8rem;
    
  }
  .cd-form legend{
    padding: 1.2rem;
    margin-bottom:10px;
  }
   .cd-form .cd-select::after{
        right:11px;
        margin-top:-3px;
      }

  
}//min-width:768
