html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

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

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


.logo-single {
    width: 400px;
    height: 77px;
    background: url("../logos/logologin.png") no-repeat;
    background-position: center center;
    display: inline-block;
    margin-bottom: 60px; 
}

.landing-page .landing-page-nav .navbar-logo .white {
    display: inline-block;
    width: 200px;
    height: 39px;
    background: url("../logos/topbarralight.png");
    background-repeat: no-repeat; 
}
.landing-page .landing-page-nav .navbar-logo .dark {
    width: 200px;
    height: 39px;
    background: url("../logos/topbarradark.png");
    background-repeat: no-repeat;
    display: none; 
}
.logo {
    width: 200px;
    height: 39px;
    background: url("../logos/topbarralight.png") no-repeat;
    background-position: center center;
    margin: 0 auto; 
}
  @media (max-width: 767px) {
    .logo {
      width: 80px; } 
    }

.logo-mobile {
    width: 200px;
    height: 39px;
    background: url("../logos/topbarralight.png") no-repeat;
    background-position: center center; 
}


/* ----- Counter Section Styling Starts -----*/

  .counter-section {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    background: #ffd900;
   }
   
   .counter-section h1  {
	   font-family: 'Arial Narrow Bold', sans-serif;
	   font-size: 45px;
	   font-weight: 700;
	   color: #303030;
   }

   .counter-section h2 {
		font-family: 'Arial Narrow Bold', sans-serif;
		font-size: 72px;
		font-weight: 999;
		padding: 0.5em;
		color: #111111;
	}
   
   .counter-icon {
	 padding: 15px;
   }
   
   .counter-icon i {
	 font-size: 42px;
	 color: #042a70;
   }
   
   .counter-text {
	   margin-top: 10px;
	 margin-bottom: 20px;
   }
   

   .counter-up {
    margin-bottom: 2em;
  }
   
   /* -------- Counter Section Styling Ends --------- */

