@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

@media (min-width: 1405px) {
  .container {
    max-width: 1260px;
  }
}

#contents {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 1;
}

/*Loader Css*/
.preloader {
  background-color: #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999;
}

.lds-ellipsis span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #2289D1;
  -webkit-animation: ball-pulse-sync 1s 0s infinite ease-in-out;
  animation: ball-pulse-sync 1s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
  -webkit-animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
  -webkit-animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animated {
  animation-duration: 10s;
  animation-fill-mode: both;
  -webkit-animation-duration: 10s;
  -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.home {
  display: block;
}

@media (max-width: 800px) {
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 100%;
  }
}

.bgcontain {
  background-image: url("../img/homebg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 720px;
  margin-bottom: 10rem;
}

@media (max-width: 800px) {
  .bgcontain {
    background-image: unset;
    background-color: rgba(34, 137, 209, 0.05);
    padding-bottom: 30px;
    margin-bottom: 6rem;
  }
}

.titletext {
  font-size: 4rem;
  color: #072429;
  font-weight: 500;
  line-height: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 460px) {
  .titletext {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 4rem;
  }
}

.blue {
  color: #2289D1;
}

nav a {
  color: #cacaca !important;
  padding-left: 2.5rem !important;
}

nav a:hover {
  text-shadow: 0 0 1px #26408A;
}

@media (max-width: 460px) {
  nav a {
    color: #494949 !important;
    padding-left: 0 !important;
  }
}

.mainbg {
  background-image: url("../img/mainbg_.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 800px) {
  .mainbg {
    background: unset;
  }
}

.whitebox {
  width: 370px;
  height: 320px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(34, 137, 209, 0.15);
          box-shadow: 0 0 5px rgba(34, 137, 209, 0.15);
  float: left;
  margin-right: 2rem;
}

@media (max-width: 800px) {
  .whitebox {
    max-width: 45%;
    margin: 2.5%;
    padding: 20px;
    height: auto !important;
  }
}

@media (max-width: 460px) {
  .whitebox {
    max-width: 100%;
    margin: 5% 0;
    padding: 10%;
    width: 100%;
    float: unset;
  }
}

.whitebox .title {
  color: #252525;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.whitebox .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #252525;
  line-height: 1.5rem;
  margin-bottom: 15px;
}

.whitebox .links a {
  color: #2289D1;
  font-weight: 600;
  font-size: 1.2rem;
}

.bluebox {
  width: 370px;
  height: 320px;
  background: #2289d1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(56%, #2289d1), to(#136096));
  background: linear-gradient(180deg, #2289d1 56%, #136096 100%);
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px rgba(34, 137, 209, 0.15);
          box-shadow: 0 0 5px rgba(34, 137, 209, 0.15);
  float: left;
}

@media (max-width: 800px) {
  .bluebox {
    max-width: 45%;
    margin: 2.5%;
    padding: 20px;
    height: auto !important;
  }
}

@media (max-width: 460px) {
  .bluebox {
    max-width: 100%;
    margin: 5% 0;
    padding: 10%;
    width: 100%;
    float: unset;
  }
}

.bluebox img {
  margin-bottom: 27px;
}

@media (max-width: 460px) {
  .bluebox img {
    margin-bottom: 0;
  }
}

.bluebox .title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.bluebox .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.5rem;
  margin-bottom: 15px;
}

.bluebox .links a {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.aboutus {
  font-size: 1.1em;
  font-weight: 400;
  color: #252525;
  line-height: 2.3rem;
  padding-right: 6rem;
}

@media (max-width: 800px) {
  .aboutus {
    padding-right: 0;
  }
}

.sectiontitle {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .sectiontitle {
    font-size: 2.5rem;
  }
}

.subtopic {
  font-size: 1.1em;
  font-weight: 400;
}

.serviceslist {
  font-weight: 500;
  color: #000;
  font-size: 1.1rem;
}

.serviceslist .col-6 {
  padding: 0;
}

.serviceslist div {
  margin-bottom: 15px;
  line-height: 20px;
}

.serviceslist div img {
  margin-right: 15px;
  float: left;
}

@media (max-width: 460px) {
  .serviceslist div img {
    width: 32px;
    margin-right: 10px;
  }
}

.serviceslist div .new {
  background-color: #2289D1;
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 5px;
  color: #fff;
}

.serviceslist div .servicename {
  padding-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 460px) {
  .serviceslist div .servicename {
    font-size: 1rem;
    padding-top: 3px;
  }
}

.partner {
  background-color: rgba(34, 137, 209, 0.1);
  background-image: url("../img/finance.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  margin-top: 100px;
}

@media (max-width: 800px) {
  .partner {
    background-image: unset;
    margin-top: 30px;
  }
}

.partner .textcontent {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 460px) {
  .partner .textcontent {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.partner .banklist {
  border: 0;
  margin-top: 40px;
}

@media (max-width: 460px) {
  .partner .banklist {
    margin-top: 0;
  }
}

.partner .banklist tr td {
  border: 0;
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  padding-left: 0;
}

@media (max-width: 460px) {
  .partner .banklist tr td {
    font-size: 1.5rem;
    line-height: 1.8rem;
    padding-bottom: 1rem;
  }
}

.contactlink {
  color: #2289D1 !important;
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: 50px;
  display: block;
  float: left;
  margin-right: 30px;
}

@media (max-width: 460px) {
  .contactlink {
    margin-top: 0px;
  }
}

.support {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 460px) {
  .support {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.contact {
  background-color: #F4F4F4;
  padding-top: 100px;
  padding-bottom: 20px;
  color: #393C3A;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8rem;
}

@media (max-width: 460px) {
  .contact {
    padding-left: 0;
    padding-right: 0;
    padding-top: 30px;
    font-size: 0.9rem;
  }
}

.contact img {
  margin-bottom: 30px;
}

.contact strong {
  font-weight: 600;
}

.list-inline-item {
  margin-right: 2rem !important;
}

.poweredby {
  font-family: 500;
  font-size: 1rem;
  color: #393C3A;
}

@media (max-width: 460px) {
  .poweredby {
    margin-top: 3rem;
    text-align: left !important;
    font-size: 0.88rem;
    font-weight: 700;
  }
}

.faqcontainer {
  min-height: 50vh;
}
/*# sourceMappingURL=custom.css.map */