	.inner-banner {
  background-image: url("/files_upload/handskake2_1.jpg");
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.inner-banner .inner-title {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.inner-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #070b3b;
  opacity: 0.7;
}
.inner-banner .inner-title h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  position: relative;
}
.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #fff;
  display: inline-block;
  margin: 5px;
}
.inner-banner .inner-title ul li i {
  font-size: 14px;
}
.inner-banner .inner-title ul li a {
  color: #fff;
}
.inner-banner .inner-title ul li.active {
  color: #0071dc;
}

.form-contact {
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.form-contact form {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}
.form-contact .bp_form_field:nth-child(3),
.form-contact .bp_form_field:nth-child(4),
.form-contact .bp_form_field:nth-child(5) {
  grid-column: span 2;
}
.form-contact .bp_form_field input,
.form-contact .bp_form_field select {
  width: 100%;
  height: 50px;
  color: #252525;
  border: 1px solid #dbe4f7;
  background-color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
}
.form-contact .form-group .form-control:focus {
  outline: none;
  border-color: #0071dc;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-contact .bp_form_field textarea {
  color: #252525;
  border: 1px solid #dbe4f7;
  background-color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 8px;
  font-weight: 500;
  height: 200px;
}
.form-contact .bp_form_label_up {
  margin-bottom: 10px;
}

.form-contact .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control:-ms-input-placeholder,
.contact-form .form-group .form-control::-ms-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #444;
}

.contact-info {
  margin-bottom: 30px;
  background-color: #070b3b;
  padding: 30px 30px 10px;
  border-radius: 15px;
  position: relative;
}

.contact-info span {
  color: #0071dc;
  display: block;
  margin-bottom: 5px;
}

.contact-info h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #fff;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info ul li {
  display: block;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.contact-info ul li .content i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  font-size: 20px;
  color: #0071dc;
  border-radius: 50px;
  border: 1px solid #e2e2e2;
  margin-bottom: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-info ul li .content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  display: block;
}

.contact-info ul li .content a {
  color: #fff;
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.contact-info ul li .content a:hover {
  color: #0071dc;
}

.contact-info ul li .content span {
  color: #fff;
  font-weight: 400;
  display: block;
  font-size: 15px;
}
.content address {
  color: #fff;
  font-weight: 400;
  display: block;
  font-size: 15px;
}
.form-contact  .bp_form_label_up span:first-child {
    margin-right: 5px;
}
.form-contact  .bp_form_field .bp_form_field {
        display: inline-block;
    padding: 12px 32px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
        border-radius: 50px;
            background-color: #0071dc;
                border: 0;
    outline: none;
}

.form-contact  .bp_form_field .bp_form_field::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    left: -36%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 0;
}
.form-contact  .bp_form_field .bp_form_field:hover:before {
    height: 100%;
    width: 135%;
    background-color: #070b3b;
}
.map-info h2,.form-contact  h2 {
        font-weight: 600;
    font-size: 24px;
}
.map-info iframe {
    height: 260px;
}
@media screen and (max-width: 768px) {
    .form-contact form {
            grid-template-columns: repeat(1, auto);
    }
    .form-contact .bp_form_field:nth-child(3), .form-contact .bp_form_field:nth-child(4), .form-contact .bp_form_field:nth-child(5) {
        grid-column: auto;
    }
}
