@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");


.grecaptcha-badge{
display:none;
}


/* spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 2px solid white;
  border-radius: 50%;
  margin-right: 8px;
  animation: spin 1s linear infinite;
  display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* spinner */
.main {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff5f7;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 30px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logo {
  width: 230px;
}

.logo svg {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.social-icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #e2642d;
  color: #e2642d;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.social-icon a:hover {
  border-color: #e8abaa;
  background-color: #e8abaa;
  color: #ffffff;
}

.has-line {
  padding-left: 100px;
  position: relative;
}

.has-line::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #333333;
  width: 88px;
  height: 2px;
}

.form-group {
  margin-top: 30px;
  position: relative;
}

.form-group input {
  width: 710px;
  height: 70px;
  border: 1px solid #B1B6C5;
  border-radius: 40px;
  padding-left: 30px;
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.form-group input:focus {
  border-color: #ff3251;
}

.form-group button {
  width: 175px;
  height: 70px;
  border: 1px solid #FF3251;
  border-radius: 40px;
  background-color: #FF3251;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 145px;
}

.logo_div {
  width: 50px;
}

.mobile_bg {
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  height: 100vh;
}



.footer {
  position: absolute;
  font-size: 12px !important;
  bottom: 0;
  width: 100%;
  text-align: end;
  color: #3b3b3b;
}

.footer p {
  font-size: 10px !important;
  /* margin-bottom: 0 !important; */
}

/* modal */

.modal#statusSuccessModal .modal-content,
.modal#statusErrorsModal .modal-content {
  border-radius: 30px;
}

.modal#statusSuccessModal .modal-content svg,
.modal#statusErrorsModal .modal-content svg {
  width: 100px;
  display: block;
  margin: 0 auto;
}

.modal#statusSuccessModal .modal-content .path,
.modal#statusErrorsModal .modal-content .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.modal#statusSuccessModal .modal-content .path.circle,
.modal#statusErrorsModal .modal-content .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}

.modal#statusSuccessModal .modal-content .path.line,
.modal#statusErrorsModal .modal-content .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
  animation: dash 0.95s 0.35s ease-in-out forwards;
}

.modal#statusSuccessModal .modal-content .path.check,
.modal#statusErrorsModal .modal-content .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
  animation: dash-check 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

.box00 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #e9abac;
  border-color: #e9abac;
}

/* ======================== */

@media (max-width: 420px) {


  .logo {
    width: 200px;
  }

  .main {
    background-image: none !important;
  }

  header {
    padding-top: 15px !important;
  }

  .form-group input {
    width: 100%;
    height: 50px;
  }

  .form-group button {
    height: 50px;
    width: 130px;
    right: 0;
  }

  .has-line {
    text-align: center;
    padding: 0;
  }

  .has-line::before {
    display: none;
  }

  h1 {
    text-align: center;
    font-size: 22px !important;
    margin-bottom: 0 !important;
    line-height: 30px !important;
  }

  .social-icon a {
    height: 35px !important;
    width: 35px !important;
    border: 1px solid #e2642d;
    color: #e2642d;
  }

  .logo {
    width: 120px;
  }

  /* .newsletter-area {
    padding-top: 150px;
    margin-bottom: 50px;
  } */



  .content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  p {
    font-size: 11px !important;
  }

  .left_col {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .form-label {
    font-size: 11px !important;
  }

  .form_div {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  .input-with-button {
    position: relative;
  }

  .input-with-button input {
    padding-right: 48px;
  }

  .input-with-button button {
    position: absolute !important;
    right: 5px;
    top: 5px;
    height: 25px;
    width: 25px;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 10px;
  }

  .logo_div {
    width: 35px;
  }

  .mobile_bg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: fit-content;
  }

  .form-control {
    font-size: 11px !important;
    height: 35px !important;
  }

  .social-icon a {
    height: 29px !important;
    width: 29px !important;
  }

  .social-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  .footer {
    position: relative;
    font-size: 10px !important;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #a5a5a5;
  }

  .footer p {
    font-size: 9px !important;
    margin-bottom: 0 !important;
  }

  .footer hr {
    color: #acacac;
    margin: 25px 0 10px 0 !important;
  }

  .modal-content {
    width: fit-content;
    padding: 25px;
  }

  .modal-dialog-centered {
    justify-content: center;
  }
.spinner {
      margin-right: 0px;
}

}

@media only screen and (min-width: 420px) and (max-width: 574px) {


.spinner {
      margin-right: 0px;
}
  .main {
    background-image: none !important;
  }

  header {
    padding-top: 15px !important;
  }

  .form-group input {
    width: 100%;
    height: 50px;
  }

  .form-group button {
    height: 50px;
    width: 130px;
    right: 0;
  }

  .has-line {
    text-align: center;
    padding: 0;
  }

  .has-line::before {
    display: none;
  }

  h1 {
    text-align: center;
  }

  .social-icon a {
    height: 35px !important;
    width: 35px !important;
    border: 1px solid #e2642d;
    color: #e2642d;
  }

  header .logo {
    width: 150px;
  }

  /* .newsletter-area {
    padding-top: 150px;
    margin-bottom: 50px;
  } */

  .content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 125px;
  }

  .left_col {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .form-label {
    font-size: 11px !important;
  }

  .form_div {
    width: 100%;
  }

  .input-with-button {
    position: relative;
  }

  .input-with-button input {
    padding-right: 48px;
  }

  .input-with-button button {
    position: absolute !important;
    right: 5px;
        top: 5px;
    height: 25px;
    width: 25px;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 10px;
  }

  .logo_div {
    width: 40px;
  }

  .form-control {
    font-size: 11px !important;
    height: 35px !important;
  }

  .social-icon a {
    height: 29px !important;
    width: 29px !important;
  }

  .social-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  .mobile_bg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: fit-content;
  }

  .footer {
    position: relative;
    font-size: 10px !important;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #a5a5a5;
  }

  .footer p {
    font-size: 9px !important;
    margin-bottom: 0 !important;
  }

  .footer hr {
    color: #acacac;
  }

  .modal-content {
    width: fit-content;
    padding: 25px;
  }

  .modal-dialog-centered {
    justify-content: center;
  }


}

@media (min-width: 575px) and (max-width: 767px) {

  .mobile_bg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: fit-content;
  }


  .main {
    background-image: none !important;
  }

  header {
    padding-top: 15px !important;
  }

  .form-group input {
    width: 100%;
    height: 50px;
  }

  .form-group button {
    height: 50px;
    width: 130px;
    right: 0;
  }

  .has-line {
    text-align: center;
    padding: 0;
  }

  .has-line::before {
    display: none;
  }

  h1 {
    text-align: center;
  }

  .social-icon a {
    height: 35px !important;
    width: 35px !important;
    border: 1px solid #e2642d;
    color: #e2642d;
  }

  header .logo {
    width: 160px;
  }

  /* .newsletter-area {
    padding-top: 150px;
    margin-bottom: 50px;
  } */

  .content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 200px;
  }

  .left_col {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .form-label {
    font-size: 11px !important;
  }

  .mobile_img img {
    width: 300px !important;
  }

  .footer {
    position: relative;
    font-size: 12px !important;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #a5a5a5;
  }

  .footer hr {
    color: #acacac;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .main {
    background-image: none !important;
  }

  .social-icon a {
    border: 1px solid #e2642d;
    color: #e2642d;
  }

  .form-group input {
    width: 100%;
    height: 55px;
  }

  .form-group button {
    height: 55px;
    right: 0;
  }

  .has-line {
    text-align: center;
    padding: 0;
  }

  .has-line::before {
    display: none;
  }

  h5 {
    font-size: 16px !important;
  }

  h1 {
    margin: 0 auto;
    max-width: 540px !important;
    text-align: center;
    font-size: 40px !important;
    line-height: 68px !important;
  }

  .content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 200px;
  }

  .left_col {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mobile_img img {
    width: 450px !important;
  }

  .footer {
    position: relative;
    font-size: 12px !important;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #a5a5a5;
  }

  .footer hr {
    color: #acacac;
  }

}

@media (min-width: 992px) and (max-width: 1200px) {
  .form-group button {
    right: 0 !important;
    height: 60px;
  }

  .form-group input {
    width: 90%;
    height: 60px;
  }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  .form-group button {
    right: 0 !important;
  }

  .form-group input {
    width: 90%;
  }
}

body {
  font-family: 'Poppins', sans-serif;
}

h1,
h5 {
  color: #001141;
}

h1 {
  font-size: 55px;
  font-weight: 700;
  max-width: 820px;
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 12px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
}

.btn-primary {
  background-color: #e9abac;
  border: none;
  font-size: 13px;
  height: 45px;
  width: 150px;
}

.btn-primary:hover {
  background-color: #ff989a;
}

.form-control {
  font-size: 13px;
  height: 45px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h5 {
    font-size: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  h1 {
    font-size: 46px;
    line-height: 44px;
  }

  h5 {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  border: 0;
  outline: 0;
  max-width: 100%;
  vertical-align: middle;
}

body {
  position: relative;
}

/*# sourceMappingURL=main.css.map */