@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  color: rgba(165, 164, 173, 0.99);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  position: relative;
  background-color: #100820;
}

@font-face {
  font-family: "wastedVendey";
  src: url("../fonts/wasted-vindey.ttf");
}
/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "wastedVendey";
  color: #fff;
}

h1 {
  font-size: 74px;
  line-height: 80px;
}

h2 {
  font-size: 50px;
  line-height: 60px;
}

h3 {
  font-size: 30px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 26px;
  color: rgba(189, 188, 196, 0.99);
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: 45px;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  background: #292238;
  background: linear-gradient(
    181deg,
    #35313f59 12%,
    rgba(146, 143, 154, 1) 160%
  );
  min-width: 170px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #756c6f;
  transition: 0.2s;
  position: relative;
}

.pbtn:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 30px;
  bottom: -7px;
  right: -30px;
  background: url(../images/btn-stars.png) no-repeat;
  transition: 0.3s;
}

.pbtn:hover:before {
  filter: brightness(0);
}

.maxWidth {
  max-width: 1440px;
}

.banner_img {
  position: relative;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

::-webkit-input-placeholder {
  color: #ffffffc7;
}

::-moz-placeholder {
  color: #ffffffc7;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ffffffc7;
}

:-moz-placeholder {
  color: #ffffffc7;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 20px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffff;
  padding: 10px 23px;
  font-size: 14px;
  font-weight: 400;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.pbtn:hover {
  background: #fff;
  color: #100820;
}

/*banner css end*/

/* custom Header  */

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 12;
}

/* custom Header  */

/* banner start  */

.general_img-wp {
  position: relative;
}

.general_img-wp img.general-img {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 220px 220px 0px 0px;
  border: 1px solid #a09da6;
  object-fit: cover;
  transition: 0.3s;
}

.general_img-wp img.banner-img1.general-img {
  height: 600px;
}

section.main_slider {
  position: relative;
}

section.main_slider .carousel-caption {
  position: relative;
  padding: 130px 0 120px;
}

section.aboutsec img.right_shadow_shp-img {
  top: -16%;
}

section.main_slider img.banner_cloud-img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

img.general-star {
  position: absolute;
  top: -20px;
  left: 0;
  margin: 0px auto;
  right: 0;
  z-index: 22;
  width: 40px;
}

img.baner-cyco-img {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 100%;
  opacity: 15%;
  right: -50px;
  top: -35px;
}

img.baner_left-circle {
  position: absolute;
  top: -30px;
  left: -80px;
  width: 170px;
  height: 350px;
  opacity: 50%;
  object-fit: fill;
}

section.main_slider .carousel-caption:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 410px;
  top: -80px;
  left: -110px;
  opacity: 30%;
  background: radial-gradient(#ffffff85, #100820);
  filter: drop-shadow(2px 4px 76px #fff);
}

/* banner end */

/* about start  */

.general_img-wp img.about_img1.general-img {
  height: 620px;
}

.ab-right {
  padding: 0 20px;
}

.general_img-wp img.about_img2.general-img {
  height: 330px;
  padding: 7px;
  object-fit: cover;
}

img.right_shadow_shp-img {
  position: absolute;
  right: 0;
  top: -50px;
}

.about_right-img img.general-star {
  width: 20px;
  top: -10px;
}

.tel_header {
  margin-bottom: 40px;
}

.tell-bx {
  text-align: center;
}

.tell-bx {
  position: relative;
  border: 1px solid #423a46;
  border-radius: 210px;
  padding: 18px 0;
  height: 470px;
  margin: 0px 5px;
  overflow: hidden;
  transition: 0.2s;
}

.tell-bx .tell_header {
  padding: 24px 24px 32px;
  border-bottom: 2px solid #ffffff21;
  margin-bottom: 34px;
}

.tell-icon {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  border-radius: 80px;
  background: linear-gradient(
    181deg,
    rgba(41, 34, 56, 1) 22%,
    rgba(146, 143, 154, 1) 143%
  );
  box-shadow: 0px 1px 1px 2px #e4e3e6b0;
}

.tell-icon img {
  width: 36px;
}

.tell-txt a {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin: 10px 0px 0px;
  transition: 0.3s;
}

.tell-bx:hover {
  background: #423a465e;
  transform: translate(0px, -4px);
}

.tell-txt a:hover {
  letter-spacing: 1px;
  color: #b9b0ca7d;
}

section.tell-sec {
  position: relative;
}

section.tell-sec img.left_shadow_shp-img {
  top: -30%;
}

section.aboutsec {
  position: relative;
  /* padding-top: 20px; */
}

/* ============== about end ==================*/

/* ============== sprit connect star ===========*/

.sprit_right-img {
  position: relative;
}

.sprit_big-img {
  width: 75%;
  margin: 0 0 0 auto;
}

.sprit-smal-img {
  position: absolute;
  left: -50px;
  width: 40%;
  bottom: 60px;
}

img.sprit_img_bg {
  position: absolute;
  top: 0;
  left: -80px;
  width: 70%;
  height: 100%;
}

section.sprit .row {
  position: relative;
}

.sprit-smal-img img.sprit_img2 {
  height: 310px;
  padding: 7px;
}

.sprit-smal-img img.general-star {
  width: 20px;
  top: -10px;
}

.sp-right {
  position: relative;
}

img.sprit_img1.general-img {
  height: 580px;
}

/* =========== sprit connect end ==============*/

/* ================ Prepare start ==============*/

.prep_right-img {
  position: relative;
  padding-left: 120px;
}

img.prep-cyco-img {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 100%;
  opacity: 15%;
  top: -5px;
  left: -40px;
}

img.prepare-img1 {
  height: 620px;
}

/* ================= Prepare end  ==============*/

/* ================= psychic start  ==============*/

img.psychic-_bg-img {
  position: absolute;
  margin: 0px auto;
  width: 60%;
  top: 7%;
  left: 0;
  right: 0;
  height: 80%;
}

section.psychic-sec .row {
  position: relative;
}

img.psychic-img1 {
  height: 600px;
}

img.psychic-img2 {
  height: 500px;
}

section.psychic-sec {
  position: relative;
}

section.psychic-sec img.right_shadow_shp-img {
  top: -250px;
}

/* ================= psychic end  ==============*/

/* testimonials-sec */

.testimonials-box-main {
  gap: 24px;
  align-items: center;
}

.testi_user_img-wp {
  flex-shrink: 0;
  width: 240px;
  margin-top: 10px;
}

img.testimonials_users {
  height: 300px;
}

.testimonials-box-main p {
  margin: 0;
}

.testimonials-box h5 span {
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 200;
  color: #ffffff9e;
}

.testimonials-sec .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.testi_user_img-wp img.general-star {
  width: 20px;
  top: -10px;
}

.prev-btn,
.next-btn {
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  opacity: 33%;
}

.next-btn:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 50px;
  left: -12px;
  border-radius: 45px;
  background: linear-gradient(181deg, #100820c4 22%, #100820 143%);
  transition: 0.3s;
}

.next-btn img.next-img {
  position: relative;
  left: -22px;
  transition: 0.3s;
}

.prev-btn img.prev-img {
  position: relative;
  right: -22px;
  transition: 0.3s;
}

.prev-btn:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 50px;
  right: -12px;
  border-radius: 45px;
  background: linear-gradient(181deg, #100820c4 22%, #100820 143%);
  transition: 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  opacity: 1;
}

.prev-btn:hover img {
  transform: translate(-20px, 0px);
}

.next-btn:hover img {
  transform: translate(20px, 0px);
}

.prev-btn:hover:before,
.next-btn:hover:before {
  background: #ffffff00;
}

.next-btn {
  float: right;
}

section.testimonials-sec {
  padding-bottom: 40px;
  position: relative;
}

/* =================== testimonials-sec ============================== */

/* =================== Footer start  ============================== */

footer.footerSec {
  position: relative;
  border-top: 1px solid #40394d;
}

.footer-links ul li a {
  display: inline-block;
  margin: 6px 0px;
  color: #ffffff80;
}

footer p {
  color: #ffffff80;
}

.footer-links.d-flex {
  gap: 40px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-txt h1 {
  font-size: 70px;
  line-height: 70px;
}

.footer-txt {
  padding: 80px 0px 60px;
  position: relative;
  border-right: 1px solid #40394d;
}

.footer-btm {
  padding: 20px 0;
  border-top: 1px solid #40394d;
}

.footer_links-main {
  padding-left: 60px;
}

.footer_links-sec {
  padding-left: 60px;
}

.footer-social {
  padding-left: 80px;
  border: 0;
}

.footer-btm p {
  color: #fff;
}

img.footer-star-img {
  width: 30px;
  height: 30px;
  object-fit: fill;
  position: absolute;
  right: -16px;
  top: -16px;
}

img.left_shadow_shp-img {
  position: absolute;
  left: 0;
  bottom: -50px;
}

section.psychic-sec img.left_shadow_shp-img {
  bottom: -40%;
}

/* =================== Footer end  ============================== */
.general_img-wp img.general-img:hover {
  transform: translate(0px, -2px);
  filter: brightness(0.8);
}

h1,
h2,
h3 {
  color: #e0e0e0; /* light grey for base text */
  position: relative;
  animation: sparkle 2s infinite alternate;
}

@keyframes sparkle {
  0% {
    text-shadow: 0 0 2px #fff, 0 0 5px #a8a8c0, 0 0 10px #7f7fb0,
      0 0 15px #9a98c0;
    opacity: 0.9;
  }
  25% {
    text-shadow: 0 0 3px #fff, 0 0 6px #b0b0d0, 0 0 12px #8c88c0,
      0 0 18px #a3a0d5;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 2px #fff, 0 0 4px #a6a4d0, 0 0 8px #7f78b0,
      0 0 12px #8c82b0;
    opacity: 0.85;
  }
  75% {
    text-shadow: 0 0 4px #fff, 0 0 7px #b0b0e0, 0 0 14px #8c88c0,
      0 0 20px #a3a0d5;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 2px #fff, 0 0 5px #a8a8c0, 0 0 10px #7f7fb0,
      0 0 15px #9a98c0;
    opacity: 0.9;
  }
}

img.new-imge-icon {
  filter: brightness(0) invert(1);
}
