/* CSS Document */


body {font-family: Arial; font-size: 18px}

A:link{font-family: Arial; color:white; font-size: 18px; text-decoration: none}

A:visited{font-family: Arial; color:white; font-size: 18px; text-decoration: none}

A:hover{font-family: Arial; color:white; font-size: 18px; text-decoration: none; font-weight: bold}

A:active{font-family: Arial; color:white; font-size: 18px; text-decoration: none; font-weight:bold}



.contact-form-wrapper{
    text-align: left;
    padding: 30px 0;
}
.form-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    box-sizing: border-box;
}
.form-col{
    padding: 0 10px;
    margin: 0 0 25px 0;
    width: 50%;
    box-sizing: border-box;
}
.col-full{
    width: 100%;
}
.form-group h6{
    font-size: 15px;
    margin: 5px 0 0 0;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.53);
}
label{
    color: #032b3a;
    margin: 0 0 8px 0;
    font-weight: bold;
    font-size: 16px;
    display: block;
}
label span{
    color: #f00;
}
.form-control{
    width: 100%;
    color: #032b3a;
    border: 1px solid #dadfe2;
    border-radius: 5px;
    padding-left: 16px;
    height: 45px;
    font-size: 16px;
    background-color: #fff;
    box-sizing: border-box;
    appearance: none;
    box-shadow: none;
    outline: none;
}
.form-control:focus{
    border-color: #bacb5c;
}
.form-control::placeholder{
    color: #032b3a;
}
textarea.form-control{
    height: 120px;
    padding-top: 15px;
}
select.form-control{
    background-image: url('./img/arrow-down-navigate.png');
    background-position: calc(100% - 10px) center;
    background-size: 15px;
    background-repeat: no-repeat;
}
.iti{
    width: 100%;
}
.submit-btn{
    color: #ffffff;
    background-color: #003300;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: table;

}
.submit-btn:hover{
    color: #ffffff;
    background-color: #bacb5c;
}
.form-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-checkbox label {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  display: table;
}

.form-checkbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #003300;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 4px;
}

.form-checkbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 3px;
  height: 10px;
  border: solid #003300;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}