@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
.form .form-control {
  border-radius: 30px;
  padding: 20px;
  box-shadow: none;
  border: 1px solid #EBE1D3 !important;
  background-color: #FFFFFF !important;
  color: #1A517A;
  font-size: 16px;
}
.form .form-control::-moz-placeholder {
  color: #1A517A;
  opacity: 0.7;
}
.form .form-control::placeholder {
  color: #1A517A;
  opacity: 0.7;
}
@media (max-width: 1679px) {
  .form .form-control {
    border-radius: 30px;
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media (max-width: 1281px) {
  .form .form-control {
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
  }
}
.form textarea.form-control {
  border-radius: 26px;
  height: 162px;
}
@media (max-width: 1679px) {
  .form textarea.form-control {
    max-height: 100px;
    border-radius: 20px;
  }
}
@media (max-width: 1481px) {
  .form textarea.form-control {
    border-radius: 18px;
  }
}
@media (max-width: 1199px) {
  .form textarea.form-control {
    border-radius: 15px;
  }
}
.form .input-wrp {
  margin-bottom: 32px;
}
@media (max-width: 1679px) {
  .form .input-wrp {
    margin-bottom: 28px;
  }
}
@media (max-width: 1281px) {
  .form .input-wrp {
    margin-bottom: 24px;
  }
}
.form .doc-uploader .custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.form .doc-uploader .custom-file .custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 52px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: #1A517A;
}
@media (max-width: 1281px) {
  .form .doc-uploader .custom-file .custom-file-input {
    height: 42px;
  }
}
.form .doc-uploader .custom-file .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 52px;
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 0.8;
  color: #1A517A;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 30px;
  padding: 20px;
  cursor: pointer;
}
@media (max-width: 1281px) {
  .form .doc-uploader .custom-file .custom-file-label {
    height: 42px;
    line-height: 0.1;
  }
}
.form .doc-uploader .custom-file .custom-file-label::after {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 87%;
  width: 100px;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #1A517A;
  content: "Browse";
  background-color: #f2f8f2;
  border: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .doc-uploader .custom-file .custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.form .btn {
  width: 100%;
}

.btn {
  border-radius: 40px;
  padding: 20px;
  box-shadow: none;
  outline: none;
  font-size: 16px;
}
@media (max-width: 1679px) {
  .btn {
    border-radius: 30px;
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media (max-width: 1281px) {
  .btn {
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn-primary {
  background-color: #FF9100;
  border-color: #FF9100;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #e48100 !important;
  border-color: #e48100 !important;
}
.btn-secondary {
  background-color: #17BF8C;
  border-color: #17BF8C;
}
.btn.btn-trans {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  color: #1A517A;
  font-weight: 500;
}
.btn.btn-trans:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/arrow-right.svg) no-repeat center/contain;
  margin-left: 1em;
}