/***** Contact *****/
:root{
  --blue:#5650EF;
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

#contact-us-section {
  background-image: url('../images/air.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
#contact-us-section .contact-us-wrap {
  background-color: white;
  box-shadow: var(--elevation-2);
  position: relative;
}
#contact-us-section .contact-us-wrap .contact-us-details {
  background: linear-gradient(204deg, var(--blue), #2a4bb7);
  padding: 2rem;
}
#contact-us-section .contact-us-wrap .contact-us-details h6 {
  text-align: start;
  font-size: 14px;
  font-weight: 500;
  color: white;
}
#contact-us-section .contact-us-wrap .contact-us-details p {
  font-size: 14px;
  color: var(--dull);
}
#contact-us-section .contact-us-wrap .contact-us-details .infoContainer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}
#contact-us-section .contact-us-wrap .contact-us-details .infoContainer .iconContainer {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  outline: 1px solid white;
  color: white;
}
#contact-us-section .contact-us-wrap .contact-us-details .infoContainer h6 {
  font-size: 16px;
  font-weight: 600;
}
#contact-us-section .contact-us-wrap .contact-us-details .infoContainer h6 span {
  font-size: 14px;
  font-weight: 400;
}
#contact-us-section .contact-us-wrap .contact-us-form {
  padding: 2rem;
}
#contact-us-section .contact-us-wrap .contact-us-form h6 {
  text-align: start;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
}
#contact-us-section .contact-us-wrap .contact-us-form label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 0;
}
#contact-us-section .contact-us-wrap .contact-us-form .group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
#contact-us-section .contact-us-wrap .contact-us-form .group .field {
  flex-grow: 1;
}
#contact-us-section .contact-us-wrap .contact-us-form input,
#contact-us-section .contact-us-wrap .contact-us-form textarea {
  display: block;
  width: 100%;
  padding: 6px 0;
  outline: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #a5a5a5;
  font-size: 14px;
}
#contact-us-section .contact-us-wrap .contact-us-form input[type=number]::-webkit-inner-spin-button,
#contact-us-section .contact-us-wrap .contact-us-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contact-us-section .contact-us-wrap .contact-us-form input[type=number] {
  -moz-appearance: textfield;
}

.float {
  position: absolute;
}

.floating-5 {
  bottom: 40px;
  left: 40px;
  width: 120px;
  border-radius: 50%;
  height: 120px;
  background: linear-gradient(215deg, var(--blue), transparent 90%);
  z-index: 2;
}

.floating-6 {
  bottom: 8px;
  left: 8px;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  z-index: 2;
  background: linear-gradient(215deg, var(--blue), transparent 90%);
}

/***** End Contact *****/