/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* =============== BASE CSS ================= */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap'); */

html,
body {
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h2,
p {
  margin: 0;
}
a:hover {
  text-decoration: none;
  display: inline-block;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}

/* ===================== Main CSS ======================== */
.hero-area {
  background: #f1f1f1 url(../img/bg-1.jpg);
  /* background-image: url(../img/bg-img.jpg); */
  background-position: right top;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background-color: #f3baba;
}
.container-padding {
  padding-left: 150px;
  padding-right: 150px;
}
.main-text-wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-text-wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-title {
  color: #ffffff;
  font-size: 90px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 15px;
  text-shadow: 4px 4px rgb(230 115 115);
  font-family: "Prompt", sans-serif;
  letter-spacing: 5px;
}

.page-title span {
  display: block;
}

.button {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  padding: 8px 15px;
}

.button:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

.radius-btn {
  background-color: #ee1d62;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
  border-radius: 5px;
  margin-left: 0px;
  -webkit-animation-name: btnRightLeft;
  animation-name: btnRightLeft;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.radius-btn:hover {
  color: #fff;
}

.radius-btn::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  top: 5px;
  left: 5px;
  content: "";
  z-index: -1;
}

.main-text .desc {
  color: #f5f5f5;
  margin-bottom: 15px;
  font-size: 16px;
}

.question-wrapper{
  margin-top: 100px;
}
.credit-score-detail {
  margin: 60px 0px;
}

h2.question {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #23154a;
}


.gradient-area {
  padding: 30px 0px;
  text-align: center;
  background: linear-gradient(90deg, #430a2d, #231644);
  color: #fff;
}

h2.caption-title {
  font-weight: bold;
  margin-bottom: 15px;
}

p.desc {
  margin-bottom: 15px;
}

@-webkit-keyframes btnRightLeft {
  0% {
    margin-left: 0;
    color: #fff;
    background-color: #ee1d62;
  }
  100% {
    margin-left: 8px;
    color: rgb(255, 253, 108);
    background-color: #f00654
  }
}

@keyframes btnRightLeft {
  0% {
    margin-left: 0;
    color: #fff;
    background-color: #af003a
  }
  100% {
    margin-left: 8px;
    color: rgb(255, 253, 108);
    background-color: #af003a
  }
}
