@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
body {
  font-size: 1rem;
  color: #000;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ---- PreLoader ---- */
#preloader {
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Or any background color */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 9999; /* Ensure it's on top */
}
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.loader-spinner {
  width: 75px;
  height: 75px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #CB0935;
  border-right: 4px solid transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
  from {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  to {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  to {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}

/*container*/
.section-bg {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.row-bg {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 7px 7px 20px -5px #1f1f1f;
  overflow: hidden;
  padding: 20px 10px 30px 10px;
  opacity: 90%;
}
.logo {
  margin: 20px 0;
  height: 130px;
  vertical-align: sub;
}
h2 {
  margin: 0 0 30px 0;
}
p {
  letter-spacing: 0px;
}



/*media quries*/
@media (max-width: 991px) {
  .row-bg {
   padding: 20px 10px 30px 10px;
  }
  h2 {
   font-size: 1.5rem;
   letter-spacing: 0px;
  }
  p {
   font-size: 0.9rem;
  }
}