.keepInTouch{
  padding: 2rem 0;
  background-position: center top;
  /* background-image: linear-gradient(140deg, #004872 0%, rgba(41, 17, 96, 0.91) 100%), url(/uploads/img/biometricTechnology.webp); */
  background-image: linear-gradient(140deg, #ffffff 50%, rgba(0, 0, 0, 0.315) 100%), url(/uploads/img/keepInTouch.webp);
}

input, select {
  color: #333;
  font-size: 14px;
}

.wrapper {
  /* margin: 5%; */
  background-repeat: no-repeat;
  display: flex;
  align-items: center; 
}

.inner {
  min-width: 850px;
  margin: auto;
  padding-top: 68px;
  padding-bottom: 48px;
  /* background-image: url(/uploads/img/bgform.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;  */
}
  .inner h3 {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    margin-bottom: 32px;
    color: #333;
    letter-spacing: 2px; 
  }

.contact form {
/* width: 50%; */
/* padding-left: 45px;  */
}

.contact .form-group {
display: flex; 
}
.contact .form-group .form-wrapper {
width: 50%; 
}
.contact .form-group .form-wrapper:first-child {
margin-right: 20px; 
}

.contact .form-wrapper {
margin-bottom: 15px; 
}

.contact .form-wrapper label {
margin-bottom: 9px;
display: block; 
}

.contact .form-control {
border: 1px solid #ccc;
display: block;
width: 100%;
height: 40px;
padding: 0 20px;
border-radius: 5px;
}

.contact .form-control:focus {
    border: 1px solid var(--bleuCyber); 
  }


textarea {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 100px !important;
  border-radius: 5px;
}

  textarea:focus {
    border: 1px solid var(--bleuCyber); 
  }



select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px; 
}
  select option[value=""][disabled] {
    display: none; 
  }

.checkbox {
  position: relative; 
}
  .checkbox label {
    padding-left: 22px;
    cursor: pointer; 
  }
  .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer; 
  }
  .checkbox input:checked ~ .checkmark:after {
    display: block; 
  }

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  color: #000;
  font-weight: bolder; 
}
  .checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f26b'; 
  }

@media (max-width: 991px) {
  .inner {
    background: none;
    padding-top: 0;
    padding-bottom: 0; 
  }

  form {
    width: 100%; 
  } 
}
    
@media (max-width: 767px) {
  .inner {
    background: none;
    padding-top: 0;
    padding-bottom: 0; 
  }

  form {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; 
  } 
}

