/*@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700|Work+Sans&display=swap');*/
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/AvenirLTStd-Black.otf') format('opentype'), /* IE6-IE8 */
       url('../fonts/AvenirLTStd-Black.woff') format('woff'), /* Modern Browsers */
       url('../fonts/AvenirLTStd-Black.ttf')  format('truetype'); /* Safari, Android, iOS */
}
html,
body {
  padding: 0;
  margin: 0;
  background: #fbe5e5;
  letter-spacing: 1px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}
.form-section{
  padding: 10px 0px;
  margin: 30px 0px;
  border-bottom: 1px solid #E4E5EC; 
}

.required::after {
  content: '*';
  color: red
}

input[type=text] {
  text-transform: uppercase;
}

input[type=email] {
  text-transform: lowercase;
}

/* body {
  background-color: #f5dccd;
}
body > .container {
  background-color: #FED2B9;
} */

.btn-custom {
  padding: 0.8rem 2rem;
  color: #fff;
  background-color: #000;
  border-color: #000;
  font-size: 130%;
}
.btn-custom:hover {
  color: #000;
  background-color: #fff;
  border-color: #000;
}

.title-text {
  color: #0c2d62;
}

.section-title {
  border-bottom: #ccc 2px solid;
}

.iti {
  display: block !important;
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 2000;
  display: grid;
  align-content: center;
  justify-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
}
.loading-wheel {
  width: 20px;
  height: 20px;
  border-width: 30px;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
}
.loading-text {
  color: #fff;
  font-size: 2rem;
}
.style-2 .loading-wheel {
  border-style: double;
  border-color: #ccc transparent;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0);
  }
  100% {
      -webkit-transform: rotate(-360deg);
  }
}