@charset "UTF-8";

:root {
  --main-color: #8E6DFD;
  --heading-color: #1F2873;
  --paragraph-color: #4d4d4d;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Roboto", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
  background: #F0F5FB;
}

h1 {
  font-size: 58px;
  line-height: 1.2333333333;
}

h2 {
  font-size: 38px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 30px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 20px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color-one);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}



/*---------------------------------------
    ## Button
---------------------------------------*/

.btn {
  height: 58px;
  line-height: 58px;
  padding: 0 32px;
  overflow: hidden;
  position: relative;
  border: 0;
  transition: all 0.5s ease;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--body-font);
  border-radius: 0;
  color: #fff;
  display: inline-block;
  transform: perspective(1px) translateZ(0);
}
.btn:focus, .btn:active {
  outline: 0;
  color: #fff;
  box-shadow: none;
}
.btn i {
  margin-right: 7px;
}

.btn-base {
  background: var(--main-color);
}
.btn-base:hover {
  color: #ffffff;
  background: rgba(142, 109, 253, 0.7);
}

.btn-blue {
  background: #1C8EF4;
  color: #ffffff;
}
.btn-blue:hover {
  background: #ED472F;
  color: #ffffff;
}

.btn-orange {
  background: #ED472F;
  color: #ffffff;
}
.btn-orange:hover {
  background: #1C8EF4;
  color: #ffffff;
}

.btn-app {
  background: radial-gradient(circle at 52.1% -29.6%, rgb(144, 17, 105) 0%, rgb(51, 0, 131) 100.2%);
}


.btn-app:hover {
  background: var(--main-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn-gradient {
  background: linear-gradient(to top, #8E6DFD, #5793F0);
  box-shadow: 3px 5px 10px rgba(142, 109, 253, 0.5);
  color: #ffffff;
}
.btn-gradient:hover {
  background: linear-gradient(to bottom, #8E6DFD, #5793F0);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #292929;
  font-weight: 400;
}
.btn-white:hover {
  background: var(--main-color);
  color: #ffffff;
}

a:hover {
  color: var(--main-color);
}

.star-rating {
  color: #292929;
  font-size: 16px;
}
.star-rating span {
  margin-right: 2px;
}
.star-rating span i {
  font-size: 14px;
  color: #FFB71B;
}

/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
/***Pre loader***/
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin-left: -25px;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}

.loader:before, .loader:after {
  content: "";
  border: 3px solid var(--main-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0px;
}

.loader:before {
  transform: scale(1, 1);
  opacity: 1;
  animation: spWaveBe 0.6s infinite linear;
}

.loader:after {
  transform: scale(0, 0);
  opacity: 0;
  animation: spWaveAf 0.6s infinite linear;
}

@keyframes spWaveAf {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes spWaveBe {
  from {
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

/*----------------------------------------------
    ## Banner Style
----------------------------------------------*/

.banner-area img {
  animation: 1.5s 1.2s fadeInRight both;
}
.banner-inner .btn {
  margin-right: 27px;
  animation: 1.5s 1.2s fadeInLeft both;
  height: 42px;
  line-height: 1.5;
  padding: 8px 13px;
  border-radius: 4px;
  position: relative;
  top: 38px;
  left: 3%;
}
.banner-inner .btn.active {
  background: var(--main-color);
}
.banner-inner .btn img {
  margin: 0;
}
.banner-area-3 {
  position: relative;
  padding: 210px 0 139px;
  background-position: top center !important;
  background-size: 134% 103% !important;
  background-repeat: no-repeat !important;
}
.banner-area-3 img {
  animation: 1.5s 1.2s fadeInLeft both;
}

.banner-area.style-3 {
  height: 100vh;
  padding: 74px 0 165px;
  background-position: -54px -267px !important;
  background-size: 129% !important;
}
.banner-area.style-3 .banner-inner {
  margin-left: -180px !important;
  margin-right: 50px;
}

.banner-area-4 {
  padding: 300px 0 250px;
  background-repeat: no-repeat !important;
  background-size: 113% 100% !important;
  background-position: center !important;
}
img.registration-img {
  position: relative;
  top: 49px;
  left: -8%;
  margin-top: -68px;
}


.btn {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(circle at 52.1% -29.6%, rgb(144, 17, 105) 0%, rgb(51, 0, 131) 100.2%);
  min-width: 200px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.btn:hover {
  opacity: .95;
  color: white;
}

.btn .animation {
  border-radius: 100%;
  animation: ripple 1.5s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}
.bvnBtn a {
  position: relative;
  z-index: 1;
}

/* copyright section start */

.copyright_section {
  width: 100%;
  float: left;
  height: auto;
  position: absolute;
  bottom: 0;
}
.copyright_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #000000;
  margin-left: 0px;
}

.copyright_text a {
  color: #fc4d2e;
}

.copyright_text a:hover {
  color: #fc4d2e;
}

@media only screen and (max-width: 600px) {

.bvnBtn {
  position: relative;
  bottom: 20px;
}
img.registration-img {
  position: relative;
  top: 62px;
  left: 0%;
  margin-top: -68px;
}
img.logo {
  position: relative;
  bottom: 50px;
  margin-top: -40px;
}
.copyright_text {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #000000;
  margin-left: 0px;
}
}
