main{
  padding:0 5px !important;
}
.wpcf7 form{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  padding:2rem 1rem;
  border-radius:10px;
  color:rgb(15 23 42);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    background-color: #fff;
    color: #000;
    outline-width:1px;
    border:0px;
    border-radius:5px;
    max-width:100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding:5px;
}

/* Reset <select> defaults */
.wpcf7 select {
  /* Reset */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  /* Personalize */
  max-width: 100%;
  padding: 1rem 4rem 1rem 1rem;
  background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center/1.4em, linear-gradient(to left, rgba(000,000,000, 0.3) 3em, rgba(255,255,255, 0.2) 3em);
  border-radius: 0.25em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  cursor: pointer;
  /* Remove IE arrow */
  /* Remove focus outline */
  /* <option> colors */
}
.wpcf7 select::-ms-expand {
  display: none;
}
.wpcf7 select:focus {
  outline: none;
}
.wpcf7 select option {
  color: inherit;
  background-color: #ccc;
}

/* Base for label styling */
.wpcf7 [type="checkbox"]:not(:checked),
.wpcf7 [type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.wpcf7 [type="checkbox"]:not(:checked) + .wpcf7-list-item-label,
.wpcf7 [type="checkbox"]:checked + .wpcf7-list-item-label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}

/* checkbox aspect */
.wpcf7 [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:before,
.wpcf7 [type="checkbox"]:checked + .wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #aaa;
  background: #FFF;
  border-radius: .2em;
  box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 rgba(0, 133, 189, .2);
  -webkit-transition: all .275s;
      transition: all .275s;
}

/* checked mark aspect */
.wpcf7 [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after,
.wpcf7 [type="checkbox"]:checked + .wpcf7-list-item-label:after {
  content: '✕';
  position: absolute;
  top: .525em;
  left: .18em;
  font-size: 1.375em;
  color: rgb(0, 133, 189);
  line-height: 0;
  -webkit-transition: all .2s;
      transition: all .2s;
}

/* checked mark aspect changes */
.wpcf7 [type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after {
  opacity: 0;
  -webkit-transform: scale(0) rotate(45deg);
      transform: scale(0) rotate(45deg);
}

.wpcf7 [type="checkbox"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0);
      transform: scale(1) rotate(0);
}

/* Disabled checkbox */
.wpcf7 [type="checkbox"]:disabled:not(:checked) + .wpcf7-list-item-label:before,
.wpcf7 [type="checkbox"]:disabled:checked + .wpcf7-list-item-label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}

.wpcf7 [type="checkbox"]:disabled:checked + .wpcf7-list-item-label:after {
  color: #777;
}

.wpcf7 [type="checkbox"]:disabled + .wpcf7-list-item-label {
  color: #aaa;
}

/* Accessibility */
.wpcf7 [type="checkbox"]:checked:focus + .wpcf7-list-item-label:before,
.wpcf7 [type="checkbox"]:not(:checked):focus + .wpcf7-list-item-label:before {
  box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(0, 133, 189, .2);
}

.wpcf7 [type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#0085bd;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
  border-radius:5px;
}

.wpcf7 [type="submit"]:hover {
	background:#636363;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

.wpcf7 [type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }