@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&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&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif !important;
  background-color: rgb(9, 9, 9) !important;
}

/* light theme styles */
.lighttext {
  color: #cdcdcd !important;
}

.primarybg {
  background-color: rgb(255, 128, 0) !important;
}

.primarytext {
  color: rgb(255, 128, 0) !important;
}

.secondarybg {
  background-color: #000000 !important;
}

.secondarytext {
  color: #000000 !important;
}

.darkbg {
  background-color: rgb(39, 39, 39);
}

.gradient-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #d27e00, #ffed4d);
  background-size: 200% 200%;
  animation: gradientFlash 2s infinite alternate;
  transition: transform 0.2s ease-in-out;
  border: none;
}

@keyframes gradientFlash {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.primary-btn {
  background-color: rgb(255, 128, 0);
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff !important;
  transition: 0.4s all;
  display: inline-block;
}
.primary-btn:hover {
  background-color: #000000;
}

.secondary-btn {
  background-color: #000000;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff !important;
  transition: 0.4s all;
}
.secondary-btn:hover {
  background-color: rgb(255, 128, 0);
}

.shadow {
  box-shadow: 0px 2px 10px #d8d8d8 !important;
}

.xsmall {
  font-size: 0.8rem;
}

.herosec .hero-banner {
  position: relative;
  background: linear-gradient(to right, rgb(72, 166, 0), rgb(0, 96, 255), rgb(255, 165, 0), rgb(255, 235, 0));
  background-size: 600%;
  background-position: 0 0;
  animation: gradients 15s ease infinite;
}
@keyframes gradients {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 0;
  }
  50% {
    background-position: 90% 0;
  }
  60% {
    background-position: 60%;
  }
  75% {
    background-position: 40%;
  }
  100% {
    background-position: 0 0;
  }
}
.herosec header .navbar .nav-link {
  color: #ffffff !important;
  padding: 7px 15px;
  transition: 0.4s all;
  font-size: 0.9rem;
}
.herosec header .navbar .nav-link:hover {
  color: rgb(255, 128, 0) !important;
}
.herosec header .navbar .active {
  background-color: rgb(255, 128, 0);
  border-radius: 8px;
  color: #ffffff !important;
}
.herosec header .navbar .active:hover {
  color: #ffffff !important;
}
.herosec .swiper-slide {
  overflow: hidden;
  position: relative;
}
.herosec .swiper-slide button {
  position: absolute;
  top: 5%;
  left: 5%;
}
.herosec .swiper-slide img {
  height: 500px;
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.about .abt-box {
  position: relative;
  margin: 0 auto;
}
.about .abt-box .stepbox {
  text-align: center;
  background-color: #272727;
}
.about .abt-box .stepbox p {
  font-weight: 600;
  color: #ffffff;
}
.about .box1 {
  background: linear-gradient(to bottom, #ffed4d, #d27e00);
}
.about .box2 {
  background: linear-gradient(to bottom, rgb(97, 118, 127), rgb(255, 168, 37));
}
.about .box3 {
  background: linear-gradient(to bottom, rgb(76, 60, 255), rgb(12, 0, 148));
}

.client .img-box {
  overflow: hidden;
}
.client .img-box img {
  width: 100%;
}
.client ul {
  padding: 0;
  list-style-type: none;
}

.reward-item {
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
}
.reward-item:hover {
  transform: scale(1.1);
}
.reward-item img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reward-item .tag {
  position: absolute;
  top: 20px;
  left: 20px;
}
.reward-item .tag p {
  background-color: #ffffff;
  border-radius: 100px;
}

.reward-description {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

.myTestmonials .swiper-slide {
  background-color: rgb(39, 39, 39);
}
.myTestmonials .swiper-slide p {
  font-family: "Newsreader", serif !important;
  font-size: 1.1rem;
}

footer .links a {
  color: #000000;
  text-decoration: none;
  transition: 0.4s all;
}
footer .links a:hover {
  color: rgb(255, 128, 0);
}
footer .media a {
  background-color: #000000;
  color: rgb(255, 128, 0);
  padding: 6px 0px;
  text-align: center;
  width: 40px;
  font-size: 18px;
  display: inline-block;
  border-radius: 50px;
  margin: 10px 5px;
  transition: 0.3s all;
}
footer .media a:hover {
  background-color: rgb(255, 128, 0);
  color: #000000;
}
footer .footer-contact a {
  color: #000000;
  transition: 0.4s all;
}
footer .footer-contact a:hover {
  color: rgb(255, 128, 0);
}

.area .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.area .circles i {
  opacity: 0.6;
}
.area .circles li {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.area .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.area .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.area .circles li:nth-child(3) {
  left: 70%;
  width: 30px;
  height: 30px;
  animation-delay: 4s;
}
.area .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.area .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.area .circles li:nth-child(6) {
  left: 75%;
  width: 100px;
  height: 100px;
  animation-delay: 3s;
}
.area .circles li:nth-child(7) {
  left: 35%;
  width: 120px;
  height: 120px;
  animation-delay: 7s;
}
.area .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.area .circles li:nth-child(9) {
  left: 20%;
  width: 40px;
  height: 40px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.area .circles li:nth-child(10) {
  left: 85%;
  width: 110px;
  height: 110px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.form .form-control {
  border: none;
}

@media (max-width: 450px) {
  .herosec .swiper-slide {
    margin-bottom: 20px;
  }
  .herosec .swiper-slide img {
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 455px) and (min-width: 768px) {
  .herosec .swiper-slide {
    margin-bottom: 20px;
  }
  .herosec .swiper-slide img {
    width: 100%;
    height: 500px;
  }
}/*# sourceMappingURL=style.css.map */