@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap");
/* ==== Grid Styles ====*/
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

* {
  box-sizing: border-box;
}

.col-5 {
  flex: 0 0 auto;
  width: 40%;
}

.col-7 {
  flex: 0 0 auto;
  width: 60%;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

/* ==== Common Styles ====*/
body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #333;
  background-image: linear-gradient(#fff, #F7FBFF);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

strong {
  font-weight: bold;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.m-0 {
  margin: 0 !important;
}

.mr-3 {
  margin-right: 7px;
}

::selection {
  background: #666;
  color: #fff;
}

::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f3f1ec;
}

::-webkit-scrollbar-thumb {
  background: #0071BB;
  border-radius: 10px;
}

* {
  scrollbar-width: thin;
}

input:focus,
button:focus {
  outline: none;
}

.pageLoader {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageLoader .loader {
  width: 60px;
  height: 60px;
  background: transparent;
  margin: 0 auto;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-radius: 50%;
  animation: 1s spin linear infinite;
}

.pageLoader p {
  text-align: center;
  margin: 30px 0 0 0;
  color: #fff;
  font-size: 16px;
  font-family: "Titillium Web", sans-serif;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.heading {
  font-family: "Titillium Web", sans-serif;
  margin-bottom: 30px;
}

.heading h1 {
  text-transform: uppercase;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 36px;
  line-height: 40px;
}

.heading p {
  font-weight: 600;
  margin: 0;
  font-size: 26px;
  line-height: 35px;
}

.heading p span {
  color: #0071BB;
  font-weight: bold;
}

.heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background-image: linear-gradient(to right, #C71681, #0071BB);
  margin-top: 20px;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .heading h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .heading p {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 991px) {
  .heading::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .heading {
    margin-bottom: 25px;
  }
  .heading h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .heading p {
    font-size: 20px;
    line-height: 26px;
  }
}

.mainBtn {
  display: inline-block;
  padding: 13px 15px;
  width: 100%;
  background: #0071BB;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: .5px;
  white-space: nowrap;
}

.mainBtn.md {
  font-size: 14px;
  padding: 10px 35px;
  width: auto;
}

.mainBtn.bg-2, .cardSection .bg-2 .mainBtn.icon {
  background-image: linear-gradient(to right, #3a66ed, 60%, #9404fd);
}

.mainBtn.paymentBtn {
  background: #C71681;
  font-size: 17px;
  font-weight: 600;
  width: auto;
  padding: 15px 76px 15px 36px;
  position: relative;
  margin-top: 30px;
}

.mainBtn.paymentBtn::after {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='15' viewBox='0 0 20.269 15.707'%3E%3Cg id='Layer_2' data-name='Layer 2' transform='translate(0.25 0.25)'%3E%3Cpath id='Path_338' data-name='Path 338' d='M3.759,21.2a.76.76,0,0,0,.54-.22l6.842-6.842a.76.76,0,0,0,0-1.079L4.3,6.219A.763.763,0,0,0,3.219,7.3l6.309,6.3L3.219,19.9a.76.76,0,0,0,.54,1.3Z' transform='translate(8.404 -5.996)' fill='%23c71681' stroke='%23c71681' stroke-width='0.5'/%3E%3Cpath id='Path_339' data-name='Path 339' d='M3.76,16.52H22A.76.76,0,0,0,22,15H3.76a.76.76,0,0,0,0,1.52Z' transform='translate(-3 -8.155)' fill='%23c71681' stroke='%23c71681' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  position: absolute;
  right: 4px;
  transform: translateY(-50%);
  top: 50%;
  transition: opacity .3s ease;
}

.mainBtn.paymentBtn:hover::after {
  opacity: .9;
}

@media (max-width: 575px) {
  .mainBtn {
    padding: 12px;
    font-size: 14px;
  }
  .mainBtn.md {
    padding: 10px 30px;
  }
}

.linkBtn {
  color: #0071BB;
  font-family: "Titillium Web", sans-serif;
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
}

.badge {
  font-size: 14px;
  background-color: #333;
  color: #fff;
  padding: 1px 12px;
  border-radius: 50px;
  margin-left: 15px;
  font-family: "Titillium Web", sans-serif;
  letter-spacing: .3px;
  white-space: nowrap;
}

.badge.settlement {
  background: #C71681;
}

.badge.advance {
  background: #24B373;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 15px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
  display: inline-block;
}

header .numberBlock {
  display: inline-flex;
  align-items: center;
  text-align: left;
}

header .numberBlock .icon {
  margin-right: 15px;
  flex-basis: 37px;
}

header .numberBlock .content span {
  font-size: 15px;
  color: #C71681;
  display: block;
  margin-bottom: 5px;
}

header .numberBlock .content a {
  font-weight: bold;
  color: #0071BB;
  font-size: 18px;
}

@media (max-width: 575px) {
  header .logo {
    max-width: 115px;
  }
  header .numberBlock .icon {
    margin-right: 10px;
    flex-basis: 26px;
  }
  header .numberBlock .content span {
    font-size: 13px;
    margin-bottom: 2px;
  }
  header .numberBlock .content a {
    font-size: 14px;
  }
}

.customCheckbox {
  white-space: nowrap;
}

.customCheckbox input {
  padding: 0;
  display: none;
  cursor: pointer;
}

.customCheckbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #0071BB;
  font-weight: 600;
  font-size: 15px;
}

.customCheckbox label::before {
  content: '';
  background-color: #fff;
  border: 2px solid #0071BB;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 7px;
  display: inline-block;
}

.customCheckbox input:checked + label:before {
  background: #0071BB;
}

.customCheckbox input:checked + label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  background: #0071BB;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 575px) {
  .customCheckbox label {
    font-size: 13px;
  }
  .customCheckbox label::before {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  .customCheckbox input:checked + label:after {
    top: 1px;
    left: 5px;
  }
}

.contentArea {
  padding: 70px 0;
}

@media (max-width: 991px) {
  .contentArea {
    padding: 40px 0;
  }
}

@media (min-width: 1200px) {
  .contentArea .gutter {
    margin-left: -70px;
    margin-right: -70px;
  }
  .contentArea .gutter > [class*="col-"] {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 575px) {
  .contentArea {
    padding: 25px 0;
  }
}

@media (max-width: 320px) {
  .contentArea {
    padding: 15px 0;
  }
}

@media (min-width: 992px) {
  .contentArea .paymentOuter {
    background: #fff;
    padding: 40px;
    border: solid 1px #e3e9ef;
    border-radius: 10px;
    margin: -25px 0;
  }
  .contentArea .paymentOuter .summaryBlock {
    margin: 0 0 0 30px;
  }
}

@media (max-width: 991px) {
  .contentArea .paymentOuter .heading {
    margin-top: 27px;
  }
}

.contentArea .alert-danger {
  background: #FFDCDC;
  border: solid 1px #E8A5A5;
  color: #924B4B;
  padding: 10px 15px;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.contentArea .alert-danger strong {
  display: block;
}

@media (max-width: 575px) {
  .contentArea .alert-danger {
    margin-bottom: 10px;
    padding: 10px;
  }
}

.contentArea .circleList {
  font-size: 16px;
  margin-bottom: 22px;
}

.contentArea .circleList li {
  margin: 13px 0;
  padding-left: 25px;
  position: relative;
}

.contentArea .circleList li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: solid 2px #707070;
  position: absolute;
  left: 0;
  top: 5px;
}

@media (max-width: 1024px) {
  .contentArea .circleList {
    font-size: 15px;
  }
  .contentArea .circleList li::before {
    top: 4px;
  }
}

.contentArea .cardblock {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: solid 1px #efefef;
  padding: 10px;
}

.contentArea .detailList li {
  font-size: 15px;
}

.contentArea .detailList li:not(:last-child) {
  margin-bottom: 10px;
}

.contentArea .detailList li strong {
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
}

.contentArea .title {
  font-size: 17px;
  text-transform: uppercase;
  color: #333;
  font-weight: bold;
  margin: 0 0 10px;
  font-family: "Titillium Web", sans-serif;
}

.contentArea .paymentBox {
  background: #EBFFF4;
  border: solid 1px #24B373;
  padding: 25px 20px;
  border-radius: 10px;
  margin: 25px 0;
  font-family: "Titillium Web", sans-serif;
}

.contentArea .paymentBox .paymentTitle {
  font-size: 17px;
  font-weight: bold;
  margin-right: 15px;
}

.contentArea .paymentBox .paymentAmount {
  font-size: 34px;
  font-weight: bold;
}

.contentArea .paymentBox .paymentLabel {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #24B373;
  background: #fff;
  padding: 7px 15px;
  border-radius: 50px;
  border: solid 1px #24B373;
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .contentArea .paymentBox .paymentTitle {
    font-size: 15px;
  }
  .contentArea .paymentBox .paymentAmount {
    font-size: 32px;
  }
  .contentArea .paymentBox .paymentLabel {
    font-size: 13px;
    padding: 5px 15px;
  }
}

@media (max-width: 575px) {
  .contentArea .paymentBox {
    padding: 20px;
  }
  .contentArea .paymentBox .paymentAmount {
    font-size: 30px;
  }
  .contentArea .paymentBox .paymentLabel {
    font-size: 12px;
    padding: 5px 12px;
  }
}

.contentArea .paymentForm .content {
  margin: 20px 0;
}

.contentArea .paymentForm .content .formLabel {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}

.contentArea .paymentForm .content .formField {
  position: relative;
  margin-top: 10px;
}

.contentArea .paymentForm .content .formField .inrLabel {
  position: absolute;
  background: #fff;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  left: 1px;
  top: 13px;
  padding: 0 0 0 15px;
  text-transform: uppercase;
  font-family: "Titillium Web", sans-serif;
}

.contentArea .paymentForm .content .formField .form-control {
  background: #fff;
  padding: 6px 15px 6px 55px;
  border-radius: 5px;
  border: solid 1px #CECECE;
  width: 100%;
  font-size: 26px;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
  vertical-align: middle;
}

.contentArea .paymentForm .content .balance {
  color: #24B373;
  font-size: 15px;
  font-weight: 600;
  margin-top: 7px;
}

.contentArea .paymentForm .content .balance strong {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 575px) {
  .contentArea .paymentForm .content {
    margin-bottom: 20px;
  }
  .contentArea .paymentForm .content .formLabel {
    font-size: 14px;
  }
  .contentArea .paymentForm .content .formField {
    margin-top: 12px;
  }
  .contentArea .paymentForm .content .formField .inrLabel {
    top: 10px;
  }
  .contentArea .paymentForm .content .formField .form-control {
    font-size: 23px;
    padding-left: 55px;
  }
}

.contentArea .choosedBox {
  background: #24B373;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0 30px;
  font-size: 18px;
  font-weight: bold;
}

.contentArea .choosedBox strong {
  display: block;
  font-size: 32px;
}

@media (max-width: 575px) {
  .contentArea .choosedBox {
    padding: 15px;
    margin: 25px 0;
  }
  .contentArea .choosedBox strong {
    font-size: 28px;
  }
}

.contentArea .choosedBox .optionLogo {
  max-width: 87px;
  background: #fff;
  border-radius: 50px;
  padding: 4px 8px;
  margin-left: 10px;
}

.contentArea .paymentMethod .item {
  padding: 15px 20px 15px 65px;
  position: relative;
  border: solid 1px #C1C1C1;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 15px;
}

.contentArea .paymentMethod .item p {
  margin: 5px 0 0 0;
  font-weight: 600;
}

.contentArea .paymentMethod .item .preferredBadge {
  background: #C71681;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 50px;
  margin: -5px 0 0 15px;
  letter-spacing: .3px;
}

.contentArea .paymentMethod .item .preferredBadge img {
  margin-right: 3px;
}

.contentArea .paymentMethod .item::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  border: solid 2px #5c5c5c;
}

.contentArea .paymentMethod .item.active::after {
  background: #5c5c5c;
  box-shadow: 0 0 0 3px #fff inset;
  border-color: #5c5c5c;
}

@media (max-width: 575px) {
  .contentArea .paymentMethod .item {
    padding: 15px 10px 15px 55px;
  }
  .contentArea .paymentMethod .item p {
    font-size: 13px;
  }
  .contentArea .paymentMethod .item::after {
    left: 15px;
  }
  .contentArea .paymentMethod .item .preferredBadge {
    margin: -5px 0 0 6px;
    font-size: 12px;
    padding: 2px 7px;
    letter-spacing: 0;
  }
}

.contentArea .formWrap .formField {
  margin-top: 17px;
}

.contentArea .formWrap .formField label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

.contentArea .formWrap .formField .form-control {
  background: #fff;
  padding: 12px 15px;
  border-radius: 3px;
  border: solid 1px #c3c3c3;
  width: 100%;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.contentArea .formWrap .formField .error {
  color: #ff0000;
  font-size: 13px;
  display: block;
  margin-top: 3px;
}

.contentArea .formWrap .formField .mainBtn {
  margin-top: 7px;
}

.contentArea .formWrap .formField .linkBtn {
  color: #0071BB;
  font-size: 16px;
  text-decoration: underline;
  background: transparent;
  border: none;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  display: table;
  margin: 7px auto 0;
}

.contentArea .formWrap .required label::after {
  content: "*";
  display: inline-block;
  color: #ff0000;
  position: relative;
  top: -5px;
  left: 4px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .contentArea .formWrap .formField .form-control {
    border: none;
    border-bottom: solid 1px #7D7D7D;
    padding: 10px 0;
    background: transparent;
  }
  .contentArea .formWrap .formField .linkBtn {
    font-size: 14px;
  }
}

@media (min-width: 576px) {
  .contentArea .formWrap.secondaryForm {
    background: #fff;
    padding: 30px 30px 20px;
    box-shadow: 0 0 6px #e9e9e9;
    border-radius: 10px;
    overflow: hidden;
  }
}

.contentArea .formWrap.secondaryForm .detailList {
  background: #EBFFF4;
  border: solid 1px #c0e7d2;
  padding: 15px 20px;
  margin-top: 15px;
  border-radius: 7px;
}

footer {
  margin-top: auto;
  padding: 20px 0;
  border-top: solid 1px #CBCBCB;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}

footer .conditions {
  margin-bottom: 15px;
}

footer .conditions a {
  font-size: 15px;
  color: #333;
  font-family: "Titillium Web", sans-serif;
}

footer .conditions a:hover {
  color: #0071BB;
  text-decoration: underline;
}

@media (min-width: 992px) {
  footer .order-lg-2 {
    order: 2;
  }
  footer .conditions {
    text-align: right;
    margin: 0;
  }
}

@media (max-width: 991px) {
  footer {
    text-align: center;
  }
}

@media (max-width: 575px) {
  footer {
    font-size: 13px;
  }
}

.successWrap {
  max-width: 600px;
  margin: -30px auto;
}

.successWrap .imgWrap img {
  display: inline-block;
}

.successWrap .message {
  font-size: 36px;
  color: #24B373;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
  margin: 30px 0 15px;
}

.successWrap p {
  color: #666;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}

.successWrap .content .paymentNumber {
  color: #0071BB;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 15px;
}

.successWrap .content hr {
  margin: 20px 0;
  opacity: .7;
}

.successWrap .content .mainBtn {
  margin: 3px;
}

.successWrap .summaryBlock {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

@media (max-width: 991px) {
  .successWrap {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .successWrap .imgWrap img {
    max-width: 270px;
  }
  .successWrap .message {
    font-size: 30px;
    margin: 20px 0 5px;
  }
  .successWrap p {
    font-size: 15px;
    line-height: 25px;
  }
  .successWrap .content .paymentNumber {
    font-size: 15px;
  }
  .successWrap .summaryBlock {
    padding: 22px;
  }
}

.failWrap .message {
  color: #E30000;
}

.summaryBlock {
  margin-top: 35px;
  overflow-x: auto;
}

.summaryBlock .title {
  text-align: left;
  font-size: 20px;
}

.summaryBlock .summarytable {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.summaryBlock .summarytable th, .summaryBlock .summarytable td {
  white-space: nowrap;
}

.summaryBlock .summarytable td {
  border-bottom: solid 1px #C8C8C8;
  padding: 12px 15px 12px 0;
  font-size: 15px;
  font-weight: 600;
}

.summaryBlock .summarytable td strong {
  font-size: 16px;
}

.summaryBlock .summarytable td:last-child {
  padding-right: 0;
}

.summaryBlock .summarytable th {
  border-bottom: solid 1px #575757;
  padding: 10px 15px 10px 0;
  font-size: 18px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}

.summaryBlock .summarytable th:last-child {
  padding-right: 0;
}

.summaryBlock .summarytable .status {
  color: #fff;
  font-size: 14px;
  padding: 3px 12px;
  font-weight: normal;
  background: #666;
  border-radius: 50px;
}

.summaryBlock .summarytable .status.paid {
  background: #24B373;
}

.summaryBlock .summarytable .status.fail {
  background: #d90024;
}

.summaryBlock .summarytable .offline {
  color: #ff5e00;
}

@media (max-width: 991px) {
  .summaryBlock {
    margin-top: 27px;
  }
}

@media (max-width: 575px) {
  .summaryBlock .summarytable th {
    font-size: 16px;
  }
  .summaryBlock .summarytable td {
    font-size: 14px;
  }
  .summaryBlock .summarytable .status {
    font-size: 13px;
  }
}

.billBlock .boxHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: solid 1px #999;
  padding-bottom: 10px;
}

.billBlock .boxHeader h2 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
}

.billBlock .boxHeader .linkBtn {
  font-size: 18px;
}

.billBlock .boxHeader .linkBtn .arrow {
  display: none;
}

.billBlock .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  margin-right: 3px;
}

.billBlock .loadingAnim {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.billBlock .loadingAnim p {
  font-size: 22px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
}

.billBlock .loadingAnim .clock {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 4px #0071BB;
  margin: 0 auto;
}

.billBlock .loadingAnim .clock .hours,
.billBlock .loadingAnim .clock .minutes {
  position: absolute;
  width: 100px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.billBlock .loadingAnim .clock .hours::before,
.billBlock .loadingAnim .clock .minutes::before {
  content: "";
  height: 4px;
  background: #0071BB;
  border-radius: 10px;
  position: absolute;
}

.billBlock .loadingAnim .clock .hours {
  animation: clock-anim 5s linear 0s infinite;
}

.billBlock .loadingAnim .clock .hours:before {
  width: 32px;
  right: 20px;
}

.billBlock .loadingAnim .clock .minutes {
  animation: clock-anim 1s linear 0s infinite;
}

.billBlock .loadingAnim .clock .minutes:before {
  width: 44px;
  right: 9px;
}

.billBlock .loadingAnim .loadingTitle {
  width: 85px;
  text-shadow: 0 0 20px #C71681;
  letter-spacing: 0.1em;
  color: #C71681;
  text-align: left;
  margin: 20px auto 0;
}

.billBlock .loadingAnim .loadingTitle::after {
  animation: txt 1s infinite;
  content: "";
}

.billBlock .billWrapper .mainBtn {
  margin-top: 20px;
}

@media (orientation: portrait) and (max-width: 767px) {
  .billBlock .boxHeader .linkBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: #24B373;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    letter-spacing: .5px;
    white-space: nowrap;
    font-weight: normal;
    text-decoration: none;
    z-index: 1;
  }
  .billBlock .boxHeader .linkBtn .arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    margin: 0 0 0 2px;
    display: inline-block;
    position: relative;
    top: -1px;
  }
}

@media (max-width: 575px) {
  .billBlock .boxHeader {
    margin-bottom: 15px;
  }
  .billBlock .boxHeader h2 {
    font-size: 26px;
  }
  .billBlock .loadingAnim p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

@media (max-width: 360px) {
  .billBlock .boxHeader h2 {
    font-size: 20px;
  }
  .billBlock .loadingAnim p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@keyframes clock-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes txt {
  0% {
    content: "LOADING";
  }
  35% {
    content: "LOADING.";
  }
  65% {
    content: "LOADING..";
  }
  100% {
    content: "LOADING...";
  }
}

.page-content-wrapper {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .page-content-wrapper {
    min-height: calc(100vh - 190px);
  }
}

@media (max-width: 575px) {
  .page-content-wrapper {
    min-height: calc(100vh - 135px);
  }
}

.page-content-wrapper h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 44px;
  font-weight: 600;
  margin: 75px 0 0 0;
  color: #0071BB;
  line-height: 50px;
}

@media (max-width: 991px) {
  .page-content-wrapper h1 {
    font-size: 25px;
    line-height: 33px;
  }
}

.page-content-wrapper .mainBtn {
  margin-top: 30px;
  border-radius: 30px;
}

.page-content-wrapper .mainBtn .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  margin-right: 4px;
}

.ghost {
  width: 125px;
  height: 160px;
  background-color: #f7f7f7;
  border: 3px solid #0071BB;
  position: relative;
  margin: auto;
  border-radius: 150px 150px 7px 7px;
  animation: ghost 1.5s ease-in-out alternate infinite;
}

.ghost .corner {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #f7f7f7;
  border: 3px solid #0071BB;
  position: absolute;
  margin-top: 144px;
  transform: rotate(45deg);
  z-index: -1;
}

.ghost .corner.two {
  margin-left: 30px;
}

.ghost .corner.three {
  margin-left: 60px;
}

.ghost .corner.four {
  margin-left: 90px;
}

.ghost .over {
  width: 27px;
  height: 27px;
  border-radius: 3px;
  background-color: #f9fcff;
  position: absolute;
  margin-top: 144px;
  transform: rotate(45deg) translateX(3px) translateY(3px);
}

.ghost .over.two {
  margin-left: 30px;
}

.ghost .over.three {
  margin-left: 60px;
}

.ghost .over.four {
  margin-left: 90px;
}

.ghost .eye {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #0071BB;
  position: absolute;
  margin: 50px auto;
  left: 0;
  right: 0;
  transform: translateX(-25px);
}

.ghost .eye.two {
  transform: translateX(25px);
}

.ghost .mouth {
  width: 40px;
  height: 4px;
  border-radius: 10px;
  background-color: #0071BB;
  position: absolute;
  margin: 75px auto;
  left: 0;
  right: 0;
}

.ghost .tonge {
  width: 4px;
  height: 10px;
  border-radius: 0px 0px 50px 50px;
  background-color: #0071BB;
  position: absolute;
  margin: 2px auto;
  left: 0;
  right: 0;
  transform: translateX(-6px);
  border-left: 5px solid rgba(0, 0, 0, 0.3);
  border-right: 5px solid rgba(0, 0, 0, 0.3);
  border-bottom: 5px solid rgba(0, 0, 0, 0.3);
}

.ghost .shadow {
  width: 120px;
  height: 30px;
  border-radius: 100%;
  background-color: rgba(0, 113, 187, 0.29);
  margin: 175px auto;
  animation: shadow 1.5s ease-in-out alternate infinite;
}

.homeBody {
  background-image: none;
}

.homeBody .homeContent {
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .homeBody .homeContent .mainImg {
    margin-right: -30px;
  }
}

.homeBody .contentArea {
  padding: 45px 0 0;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 162px);
}

@media (max-width: 991px) {
  .homeBody .contentArea {
    padding: 40px 0 0;
  }
}

@media (max-width: 575px) {
  .homeBody .contentArea {
    padding: 25px 0 0;
  }
}

@media (max-width: 320px) {
  .homeBody .contentArea {
    padding: 15px 0 0;
  }
}

.homeBody footer {
  margin-top: 0;
  display: block !important;
}

@media (max-width: 991px) {
  .homeBody .mainImg {
    margin-bottom: 30px;
  }
}

.footerInfo {
  background: #F1F4F7;
  padding: 30px 0;
  margin-top: auto;
}

.footerInfo .col-4 {
  flex: 0 0 auto;
  width: 33.33333%;
}

@media (max-width: 991px) {
  .footerInfo {
    padding: 20px 0;
  }
  .footerInfo .col-4 {
    width: 50%;
    margin: 17px 0;
  }
  .footerInfo .col-4.logoBlock {
    width: 100%;
    text-align: center;
  }
  .footerInfo .col-4.logoBlock img {
    display: inline-block;
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .footerInfo .col-4 {
    width: 100%;
  }
  .footerInfo .col-4.logoBlock img {
    max-width: 200px;
  }
}

.footerInfo .connectBlock {
  display: flex;
}

@media (min-width: 1200px) {
  .footerInfo .connectBlock {
    padding-left: 30px !important;
    padding-right: 30px !important;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footerInfo .connectBlock {
    justify-content: center;
  }
}

.footerInfo .connectBlock ul li {
  font-size: 17px;
  font-family: "Titillium Web", sans-serif;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.footerInfo .connectBlock ul li img {
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.footerInfo .connectBlock ul li a {
  color: #333;
  text-decoration: underline;
  display: flex;
  align-items: center;
  transition: color .3s ease;
}

.footerInfo .connectBlock ul li a:hover {
  color: #0071BB;
}

.footerInfo .connectBlock ul li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .footerInfo .connectBlock ul li {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .footerInfo .connectBlock ul li {
    justify-content: center;
  }
  .footerInfo .connectBlock ul li img {
    width: 18px;
  }
}

.footerInfo .secureBlock {
  text-align: right;
}

.footerInfo .secureBlock img {
  display: inline-block;
}

@media (max-width: 575px) {
  .footerInfo .secureBlock {
    text-align: center;
    margin-bottom: 0;
  }
  .footerInfo .secureBlock img {
    max-width: 175px;
  }
}

@media (min-width: 992px) {
  .conditionsBlock {
    margin-top: -25px;
  }
}

.conditionsBlock h1, .conditionsBlock h2, .conditionsBlock h3 {
  font-family: "Titillium Web", sans-serif;
  margin-bottom: 10px;
  font-size: 25px;
}

.conditionsBlock h3 {
  font-size: 20px;
}

.conditionsBlock a {
  color: #0071BB;
  font-weight: 700;
}

.conditionsBlock a:hover {
  text-decoration: underline;
}

.conditionsBlock ul, .conditionsBlock ol {
  margin: 0 0 12px 18px;
  list-style: disc;
}

.conditionsBlock ul li, .conditionsBlock ol li {
  margin: 3px 0;
  line-height: 25px;
}

.conditionsBlock p {
  line-height: 24px;
  margin-bottom: 12px;
}

.hide {
  display: none;
}

.margin-top-20 {
  margin-top: 20px;
}

@keyframes shadow {
  0% {
    transform: scale(1) translateY(0px);
  }
  100% {
    transform: scale(0.9) translateY(20px);
  }
}

@keyframes ghost {
  0% {
    transform: scale(1) translateY(0px);
  }
  100% {
    transform: scale(1) translateY(-20px);
  }
}

@media (max-width: 991px) {
  .hidden-sm {
    display: none;
  }
  footer {
    display: none;
  }
}

@media (min-width: 992px) {
  .visible-sm {
    display: none;
  }
}

.cardSection .card {
  padding: 35px 27px;
  color: #fff;
  border-radius: 10px;
  font-family: "Titillium Web", sans-serif;
}

.cardSection .card:not(:last-child) {
  margin-bottom: 17px;
}

.cardSection .card .cardtitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 13px;
  line-height: 30px;
}

.cardSection .card p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  line-height: 23px;
}

.cardSection .card .icon {
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 20px;
  opacity: .9;
}

.cardSection .card .mainBtn {
  background: #fff;
  padding: 10px 25px;
  font-weight: 600;
  width: auto;
  margin-top: 16px;
  letter-spacing: 0;
}

.cardSection .card .mainBtn svg {
  width: 18px;
  height: 12px;
  margin-left: 7px;
}

@media (max-width: 460px) {
  .cardSection .card {
    padding: 27px 20px;
  }
  .cardSection .card .cardtitle {
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cardSection .card p {
    font-size: 15px;
    line-height: 21px;
  }
  .cardSection .card .icon {
    min-width: 80px;
    height: 80px;
    margin-left: 15px;
  }
  .cardSection .card .icon img {
    width: 40px;
  }
}

.cardSection .bg-1, .cardSection .bg-1 .icon {
  background-image: linear-gradient(to right, #24B373, #187E51);
}

.cardSection .bg-1 .mainBtn {
  color: #178253;
}

.cardSection .bg-1 .mainBtn svg {
  fill: #178253;
}

.cardSection .bg-2, .cardSection .bg-2 .icon {
  background-image: linear-gradient(to right, #C71681, #850F57);
}

.cardSection .bg-2 .mainBtn {
  color: #890F59;
}

.cardSection .bg-2 .mainBtn svg {
  fill: #890F59;
}

@media (max-width: 991px) {
  .gradientLine {
    display: block;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #FF5852 20%, #FFA200 20% 40%, #3DCD49 20% 60%, #0089D7 20% 80%, #9E44C4 20%);
    margin: 15px 0 0;
  }
}
/*# sourceMappingURL=