.contact-section form .form-group {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 20px;
}

.contact-section form .form-group input {
  display: flex;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 10px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.contact-section form .form-group input::placeholder {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  opacity:.8;
}

@media(max-width:991px) {
  .contact-section .visibility-hidden {
    display: none;
  }

  .contact-section .image-and-text {
    flex-direction: column;
  }

  .contact-section .display-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .contact-section .display-mobile img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
  }
}

@media(max-width:767px) {
  .contact-section form .form-group {
    flex-direction: column;
  }

  .contact-section form .form-group .w-50 {
    width: 100%;
  }
}
