@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Icons Settings */
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}
a:hover{
  text-decoration: none;
  color: #da086a;
}
a{
  color: #ff0779;
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, li, p, a, button{
  font-family: "Open Sans", sans-serif;
}
.body{
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  font-family: "Open Sans", sans-serif;
}
.auto-container{
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
.home-banner{
  padding: 20px 24px;
}
.home-banner .btn{
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: leftRight 2s ease-in-out infinite;
  border-radius: 30px;
}
.home-banner .bg-container{
  background-image: url("../images/banner-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 80px 15px 150px;
  text-align: center;
  max-width: 1900px;
}
.home-banner h4{
  font-size: 18px;
  font-weight: 600;
}
.home-banner h1{
  margin-bottom: 30px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 54px;
}
.home-banner h5{
  font-size: 16px;
}
.main-header .navbar .navbar-nav .nav-item .nav-link{
  color: #333333;
  font-size: 17px;
}
.main-header .navbar .navbar-nav .nav-item.active .nav-link{
  color: #000000;
  font-weight: 500;
}
.animate-one{
  max-width: 900px;
}
.home-banner .desc{
  max-width: 630px;
  margin: 0 auto;
  line-height: 28px;
  font-weight: 400;
}
.blog-img-box{
  max-height: 500px;
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 20px
}
.blog-img-box img{
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.accordion #accordion .btn-link{
  position: relative;
}
.accordion #accordion .btn-link[aria-expanded="true"]::after{
  position: absolute;
  right: -10px;
  top: -10px;
  color: #fff;
  width: 40px;
  background: #ff0779;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  content: "remove";
  font-family: 'Material Icons';
}
.accordion #accordion .btn-link[aria-expanded="false"]::after{
  position: absolute;
  right: -10px;
  top: -10px;
  color: #fff;
  width: 40px;
  background: #ff0779;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  content: "add";
  font-family: 'Material Icons';
}
@keyframes rotateImage {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Adjust height as needed */
  }
}
@keyframes leftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px); /* Adjust height as needed */
  }
}
.rotating-image {
  animation: rotateImage 3s linear infinite;
}
.set-position{
  position: absolute;
  left: -240px;
  bottom: 100px;
}
.banner-icn1 {
  position: absolute;
  right: -210px;
  top: 90px;
  animation: upDown 2s ease-in-out infinite;
}
.banner-icn2{
  position: absolute;
  left: -210px;
  top: 40px;
  animation: leftRight 2s ease-in-out infinite;
}

/* Swiper section */
.scroll-swipe-section {
  display: flex;
  flex-direction: column;
  margin-top: -100px;
  padding-bottom: 50px;
  background-color: #ffffff;
}

.swiper-horizontal {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: auto;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 16px;
  margin-right: 8px;
  margin-left: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; /* Safari */
  -moz-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; /* Firefox */
  -ms-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; /* Internet Explorer */
  overflow: hidden;
  margin-bottom: 30px;
}
.swiper-slide img{
  height: 580px;
  border-radius: 16px;
}
.section-steps{
  padding: 30px 0;
}
.section-steps .box{
  padding: 40px;
  border-radius: 20px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-steps .box h4{
  font-weight: 600;
}
.section-steps .box-1{
  background-color: #fefcc3;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: upDown 2s ease-in-out infinite;
}
.section-steps .box-2{
  background-color: #fcd8dd;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: upDown 2s ease-in-out infinite;
}
.section-steps .box-3{
  background-color: #d8fced;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: upDown 2s ease-in-out infinite;
}
.section-steps .box-1 .count{
  color: #e1dd64;
}
.section-steps .count{
  position: absolute;
  top: -25px;
  right: 15px;
  font-size: 120px;
  font-weight: 700;
  opacity: 0.3;
}
.empowering-steps {
  background-color: #f1f1f1;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
.empowering-steps .box{
  background-color: #f58f9d;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.empowering-steps .box h5{
  font-weight: 600;
}
.empowering-steps .box .rounded-box{
  border-radius: 30px;
}
.ready-to-change .auto-container{
  padding: 50px 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .2) 0%, rgba(219, 39, 119, .10000000149011612) 100%);
  border-radius: 30px;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
-webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
-moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */

}
.ready-to-change .auto-container h2{
  font-size: 40px;
  font-weight: 700;
}
.ready-to-change .auto-container h2 span{
  color: #e93767;
}
.btn-download-ios{
  background-color: #e93767;
  border-radius: 30px;
  border: 0;
  padding: 16px 30px;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: upDown 2s ease-in-out infinite;
  
}
.btn-download-android{
  border-radius: 30px;
  border: 0;
  padding: 16px 30px;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: upDown 2s ease-in-out infinite;
  margin-left: 15px;
}
.box-right{
  background: radial-gradient(circle at 94.35384114583333% 89.61588541666666%, #EC89FF 0%, 20%, rgba(236,137,255,0) 40%), radial-gradient(circle at 6.676432291666666% 100%, rgba(181,181,181,0.99) 0%, 25%, rgba(181,181,181,0) 50%), radial-gradient(circle at 4.728190104166666% 10.777994791666666%, rgba(255,255,255,0.52) 0%, 39%, rgba(255,255,255,0) 65%), radial-gradient(circle at 62.696940104166664% 0%, #8015E8 0%, 42%, rgba(128,21,232,0) 70%), radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255,255,255,0) 100%);
}
.box-right img{
  height: 690px;
  object-fit: contain;
}
.empowering-steps .btn{
  border-radius: 30px;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Standard */
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Safari & older Chrome */
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); /* Firefox */
  animation: leftRight 2s ease-in-out infinite;
}
.footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  padding: 50px 0;
  height: 380px;
}
.ms-main{
  position: relative;
  background-color: #ffffff;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
  margin-bottom: 380px;
  z-index: 1;
  padding-bottom: 0;
  padding-top: 100px;
}
.highlight-text {
  background-color: #ffbf80;
  padding: 0 12px;
}
.accordion .card{
  border: 0;
  background-color: #ffffff;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); 
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); 
  border-radius: 20px;
  margin-bottom: 30px;
}
.accordion .card .card-header{
  border: 0;
  padding: 0;
  background-color: transparent;
}
.accordion .card .card-header h5{
  display: block;
}
.accordion .card .card-header .btn-link{
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  padding: 24px 30px;
  white-space: normal;
}
.accordion .card .card-body{
  padding: 20px 30px;
}
.accordion h2{
  font-weight: 700;
}
.show-bg{
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 2;
}
.pricing-boxarea {
  background: #000000;
  border-radius: 20px;
  position: relative;
  padding: 24px;
  z-index: 1;
  transition: all 0.4s;
  margin-bottom: 30px;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); 
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1);
}

.pricing-boxarea.active {
  transform: translateY(-5px);
  background: #000000;
  transition: all 0.4s;
}

.pricing-boxarea h4 {
  transition: all 0.4s;
  margin-bottom: 14px;
}

.pricing-boxarea p {
  padding-bottom: 24px;
  border-bottom: 1px solid #DEE0E2;
  transition: all 0.4s;
}

.list-area {
  background: rgba(78, 47, 218, 0.05);
  transition: all 0.6s;
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.list-area h5 {
  transition: all 0.4s;
}

.pricing-boxarea.active .list-area {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.list-area ul {
  padding: 16px;
}

.list-area ul li {
  margin-top: 5px;
  transition: all 0.4s;
}
.contact-form-area {
  border-radius: 7px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1); 
  -webkit-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 3px 31px 5px rgba(0, 0, 0, 0.1);
  padding: 32px;
}
.contact-main-inner-area{
  padding-bottom: 50px;
}
.contact-main-inner-area h2{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-main-inner-area p{
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .contact-form-area {
      margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .contact-form-area {
      margin-top: 30px;
  }
}

.contact-form-area h4 {
  line-height: 24px;
  display: inline-block;
}

.contact-form-area .input-area input,
.contact-form-area .input-area textarea,
.contact-form-area .input-area select {
  border-radius: 8px;
  border: 1px solid #E6E6E6;
  width: 100%;
  padding: 14px 16px;
}

.contact-form-area .input-area input, .contact-form-area .input-area select.form-control:not([size]):not([multiple]) {
  height: 48px;
}

.contact-form-area .input-area textarea {
  height: 120px;
}

.contact-form-area .input-area input::placeholder,
.contact-form-area .input-area textarea::placeholder {

  line-height: 16px;
}

.contact-form-area .input-area button {
  border: none;
  outline: none;
  margin-top: 24px;
}
.number-address-area {
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: #ffffff; /* Replace with actual color */
  position: relative;
  transition: all 0.4s;
}

.number-address-area .phone-number {
  display: flex;
  align-items: center;
}

.number-address-area .phone-number .img1 {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  transition: all 0.4s;
  background: #EFE9F8;
  max-width: 60px;
  flex: 0 0 60px;
}

.number-address-area .phone-number .content {
  margin-left: 16px;
}

.number-address-area .phone-number .content p {
  color: #999999; /* Replace with actual color */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 8px;
  display: inline-block;
}

.number-address-area .phone-number .content a {
  color: #333333; /* Replace with actual color */
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  display: block;
  transition: all 0.4s;
}

.number-address-area .phone-number .content a:hover {
  color: #666666; /* Replace with actual color */
  transition: all 0.4s;
}
.blog-author-boxarea {
  background: #f1f1f1; /* Replace with the actual color */
  position: relative;
  z-index: 1;
  border-radius: 4px;
  border: 1px solid #f1f1f1;
}

.blog-author-boxarea:hover .img1::after {
  height: 100%;
  transition: all 0.4s;
}

.blog-author-boxarea:hover .img1 img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}

.blog-author-boxarea .img1 {
  border-radius: 5px 5px 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog-author-boxarea .img1 img {
  height: 100%;
  width: 100%;
  border-radius: 5px 5px 0 0;
  transition: all 0.4s;
}

.blog-author-boxarea .content-area {
  padding: 24px;
}

.blog-author-boxarea .content-area .tags-area ul {
  margin-bottom: 16px;
}

.blog-author-boxarea .content-area .tags-area ul li {
  display: inline-block;
  margin: 0 16px 0 0;
}

.blog-author-boxarea .content-area .tags-area ul li a {
  font-size: 16px; /* Replace with actual size */
  line-height: 16px; /* Replace with actual size */
  font-weight: 400; /* Replace with actual weight */
  display: inline-block;
  transition: all 0.4s;
  color: #777; /* Replace with actual color */
  margin-bottom: 0;
}

.blog-author-boxarea .content-area .tags-area ul li a img {
  margin: -2px 6px 0 0;
}

.blog-author-boxarea .content-area a {
  font-size: 20px; 
  line-height: 26px; 
  font-weight: 600;
  color: #333; /* Replace with actual color */
  transition: all 0.4s;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-author-boxarea .content-area a:hover {
  color: #555;
  transition: all 0.4s;
}

.blog-author-boxarea .content-area p {
  font-size: 16px; 
  line-height: 26px; 
  font-weight: 400;
  color: #777;
  margin-bottom: 16px;
}

.blog-author-boxarea .content-area a.readmore {
  font-size: 16px; 
  line-height: 16px; 
  font-weight: 700;
  color: #8015E8;
  display: inline-block;
  transition: all 0.4s;
  margin-bottom: 0;
  font-weight: 400;
}

.blog-author-boxarea .content-area a.readmore:hover {
  color: #555;
  transition: all 0.4s;
}

.blog-author-boxarea .content-area a.readmore i {
  transform: rotate(-45deg);
}
.main-banner-t{
  background-color: #8015E8;
  color: #ffffff;
}
.blog-author-boxarea .content-area{
  background-color: #ffffff;
}
.rounded-pill{
  border-radius: 30px;
}
.try-for-free{
  background-color: #4051a3;
  border: 0;
  padding: 14px 20px !important;
  font-size: 15px;
}
.section-feature{
  background: linear-gradient(rgb(124 34 203 / 74%), #ad2586db), url(../images/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
}
.section-feature .box{
  padding: 30px;
}
.section-feature .glitch .box{
  transform: rotate(8deg) !important;
}
.section-feature .no-glitch .box{
  transform: rotate(-8deg) !important;
}
.ready-to-change .auto-container{
  overflow: hidden;
  position: relative;
}
.ready-to-change .auto-container::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 20px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: linear-gradient(45deg, #d51cbe1c, #7d43cf00), url(../images/hero-bg-1.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0px 0px 53px 3px #00000024;
  -webkit-box-shadow: 0px 0px 53px 3px #00000024;
  -moz-box-shadow: 0px 0px 53px 3px #00000024;
  border: 10px solid #d321b2de;
  animation: leftRight 2s ease-in-out infinite;
}
.fsck{
  background: #fff;
  padding: 17px 20px;
  border-radius: 18px;
  box-shadow: 0px 1px 23px 3px #00000021;
  -webkit-box-shadow: 0px 1px 23px 3px #00000021;
  -moz-box-shadow: 0px 1px 23px 3px #00000021;
  max-width: 650px;
  width: 100%;
  margin-left: -50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fsck p{
  margin-bottom: 0;
}
.main-header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1022;
  background: #ffffff;
}
@media(max-width:1340px){
  .banner-icn1{
    right: 0;
  }
  .banner-icn2{
    left: 0;
  }
}
@media(max-width:991px){
  .main-header .navbar-dark .navbar-toggler {
    color: rgb(237 237 237);
    border-color: rgba(255, 255, 255, .1);
    background: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
}
.main-header .navbar-collapse{
  position: absolute;
  top: 100%;
  z-index: 1024;
  width: 100%;
  left: 0px;
  background: rgb(255, 255, 255);
  padding: 20px 0;
}

}
@media(max-width:767px){
  .home-banner h1 {
    font-weight: 700;
    font-size: 30px;
}
.number-address-area .phone-number .content a{
  font-size: 16px;
}
.ready-to-change .auto-container h2 {
  font-size: 40px;
}
.ready-to-change .auto-container {
  padding: 32px;
  border-radius: 15px;
}
.ms-main, .empowering-steps{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
}
@media(max-width:575px){
  .btn-download-android, .btn-download-ios{
    width: 100%;
    margin-left: 0;
  }
  .empowering-steps .box{
    padding: 1rem !important;
  }
  .empowering-steps .box .rounded-box{
    padding: 2rem !important;
  }
  .empowering-steps h2{
    font-size: 25px;
  }
  .banner-btn{
    max-width: 310px;
    width: 100%;
    margin: 10px 0 0 !important;
  }
  .navbar-brand img{
    width: 65px;
  }
  .home-banner .bg-container{
    padding: 40px 25px 110px;
  }
}