body {
  background: -webkit-gradient(90deg, rgba(41, 21, 114, 0.12), rgba(0, 86, 177, 0.21) 100%);
  background: linear-gradient(90deg, rgba(41, 21, 114, 0.12), rgba(0, 86, 177, 0.21) 100%);
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: rgba(64, 64, 64, 0.8);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
  width: 100%;
  margin: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827;
}
a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.form-control:focus {
  border-color: rgba(97, 74, 235, 0.34);
  box-shadow: 0 0 0 0.25rem rgba(97, 74, 235, 0.27);
}
::placeholder {
  color: #111827;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #111827;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #111827;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #111827;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #111827;
}
.btn-theme {
  background: #614aeb;
  border: 2px solid #614aeb;
  color: #ffffff;
  padding: 10px 10px 10px 25px;
  text-transform: capitalize;
  border-radius: 50px;
}
.btn-theme:hover {
  background: transparent;
  color: #614aeb;
}
.btn-theme .arrow {
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 50px;
  margin-left: 15px;
}
.btn-theme .arrow i {
  color: #614aeb;
}
.btn-white {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #614aeb;
  padding: 10px 10px 10px 25px;
  text-transform: capitalize;
  border-radius: 50px;
}
.btn-white:hover {
  background: transparent;
  color: #ffffff;
}
.btn-white .arrow {
  background: #614aeb;
  padding: 4px 8px;
  border-radius: 50px;
  margin-left: 15px;
}
.btn-white .arrow i {
  color: #ffffff;
}
.regContainer {
  width: 100%;
  max-width: 1600px;
  border-radius: 40px;
  background: #f3f2f7;
  margin: 0 auto;
}
.light-bg-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 490px;
  height: 480px;
  background-image: url(../images/icon-section-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
}
.home-bg-two {
  background: url(../images/home-bg-two.png);
  background-size: cover;
}
.bgPrimary {
  background: #614aeb;
}
.text-yellow {
  color: #f1a800;
}
.primaryGradient {
  background: linear-gradient(180deg, #635bff1f 0, #635bff08 100%);
}
.warningGradient {
  background: linear-gradient(180deg, #f8c20a1f 0, #f8c20a08 100%);
}
.secondaryGradient {
  background: linear-gradient(180deg, #16cdc71f 0, #16cdc708 100%);
}
.dangerGradient {
  background: linear-gradient(180deg, #ff66921f 0, #ff669208 100%);
}
.successGradient {
  background: linear-gradient(180deg, #36c76c1f 0, #36c76c08 100%);
}
#back-to-top {
  display: inline-block;
  background-color: #ec7b13;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 45px;
  color: #ffffff;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: #0c1524;
}
#back-to-top:active {
  background-color: #0c1524;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.regHeader.is-sticky {
  background: #ffffff;
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  width: 100%;
  z-index: 5;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.regHeader {
  padding: 15px 0;
  z-index: 5;
  position: relative;
}
.regHeader .regNavbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.regHeader .regNavbar .logo {
  display: inline-block;
  width: 200px;
}
.regHeader .regNavbar .logo img {
  width: 100%;
}
.regHeader .regNavbar .mainMenu .navbarNav li {
  display: inline-block;
  padding: 20px 20px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li {
    display: block;
    padding: 5px 20px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li a {
  color: #111827;
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.regHeader .regNavbar .mainMenu .navbarNav li a:hover {
  color: #614aeb;
}
.regHeader .regNavbar .mainMenu .navbarNav li a.active {
  color: #614aeb;
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 210px;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: #614aeb;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu {
    position: inherit;
    visibility: visible;
    opacity: 1;
    transform: inherit;
    text-align: center;
    margin: auto;
    display: inherit;
    margin-top: 10px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li {
  padding: 10px 15px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li {
    padding: 5px 15px;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  display: inline-block;
  color: #ffffff;
}
.regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li:hover a {
  transform: translateX(5px);
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li ul.subMenu li:hover a {
    transform: inherit;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li:hover {
  transition: all 0.3s ease-in-out;
}
.regHeader .regNavbar .mainMenu .navbarNav li:hover ul.subMenu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 10px 0;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li:hover ul.subMenu {
    transform: inherit;
    padding: 0;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child {
  display: none;
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child a {
  color: #ffffff;
}
.regHeader .regNavbar .mainMenu .navbarNav li:last-child a:hover {
  color: #614aeb;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav li:last-child {
    display: block;
  }
}
.regHeader .regNavbar .mainMenu .navbarNav .has-child-menu::after {
  position: absolute;
  right: 3px;
  font-family: FontAwesome !important;
  content: "\f107";
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-in-out;
  top: 22px;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
  color: #111827;
}
@media screen and (max-width: 992px) {
  .regHeader .regNavbar .mainMenu .navbarNav .has-child-menu::after {
    content: inherit;
  }
}
@media screen and (max-width: 992px) {
  .regHeader .header-btn {
    display: none;
  }
}
@-webkit-keyframes dot-scale-up {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes dot-scale-up {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.regBanner {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.05)), to(rgba(116, 97, 224, 0.05)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  position: relative;
}
.regBanner #particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.regBanner .hero-animated-blobs span {
  position: absolute;
  border-radius: 50%;
  -webkit-animation: dot-scale-up 1.2s infinite linear alternate;
  animation: dot-scale-up 1.2s infinite linear alternate;
}
.regBanner .hero-animated-blobs span:first-child {
  height: 14px;
  width: 14px;
  background: #5ABE7D;
  bottom: 35%;
  left: 6%;
}
.regBanner .hero-animated-blobs span:nth-child(2) {
  height: 8px;
  width: 8px;
  background: #1293EC;
  top: 15%;
  left: 15%;
}
.regBanner .hero-animated-blobs span:nth-child(3) {
  height: 10px;
  width: 10px;
  background: #684dd7;
  bottom: 12%;
  left: 40%;
}
.regBanner .hero-animated-blobs span:nth-child(4) {
  height: 14px;
  width: 14px;
  background: #FD4C5C;
  bottom: 60%;
  left: 50%;
}
.regBanner .hero-animated-blobs span:nth-child(5) {
  height: 20px;
  width: 20px;
  background: #5ABE7D;
  top: 10%;
  left: 65%;
}
.regBanner .hero-animated-blobs span:nth-child(6) {
  height: 20px;
  width: 20px;
  background: #5ABE7D;
  bottom: 40%;
  left: 65%;
}
.regBanner .hero-animated-blobs span:nth-child(7) {
  height: 20px;
  width: 20px;
  background: #684dd7;
  bottom: 10%;
  right: 5%;
}
.regBanner .bannerContent {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .regBanner .bannerContent {
    text-align: center;
  }
}
.regBanner .bannerContent h1 {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 62px;
  line-height: 82px;
  color: #111827;
}
@media screen and (max-width: 992px) {
  .regBanner .bannerContent h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.regBanner .bannerContent h1 .yellow-big-highlight-bold-5 {
  background: url(../img/yellow-highlight-bold-5.svg) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
}
.regBanner .bannerContent h1 .blue-highlight-1 {
  background: url(../img/blue-highlight1.svg) no-repeat;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
}
.regBanner .bannerContent p {
  font-size: 18px;
  line-height: 32px;
  padding-top: 25px;
}
@media screen and (max-width: 992px) {
  .regBanner .bannerContent p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
    padding-top: 15px;
  }
}
.regBanner .bannerContent .btn-theme:hover {
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #614aeb;
}
.regBanner .bannerContent .btn-theme:hover .arrow {
  background: #614aeb;
}
.regBanner .bannerContent .btn-theme:hover .arrow i {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .regBanner .bannerPicture {
    margin-top: 20px;
  }
}
.heading .short-title {
  color: #614aeb;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.heading .title {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 62px;
  line-height: 82px;
}
@media screen and (max-width: 992px) {
  .heading .title {
    font-size: 42px;
    line-height: 52px;
  }
}
.heading .title .red-highlight-bold-5 {
  background: url(../img/red-highlight-bold-5.svg) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
}
.heading .title .green-highlight-3 {
  background: url(../img/green-highlight-3.svg) no-repeat;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
}
.heading .title .blue-highlight-bold-3 {
  background: url(../img/blue-highlight-bold-3.svg) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  white-space: nowrap;
}
.heading .title .x_wd_display_circle {
  background-image: url(../img/circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.heading .title .x_wd_display_underline {
  background-image: url(../img/underline.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom 5%;
}
.regAboutWrapper {
  padding: 100px 0;
}
.regAboutWrapper .aboutPicture img {
  border-radius: 40px;
}
.regAboutWrapper .aboutGrid {
  padding: 30px;
  background: #e6e1fb;
  border-radius: 40px;
}
.regAboutWrapper .aboutGrid .icon {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #614aeb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.regAboutWrapper .aboutGrid .icon img {
  height: 40px;
}
.regAboutWrapper .aboutGrid .content h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #2a0d9f;
}
.regAboutWrapper .aboutGrid p {
  font-size: 16px;
  line-height: 32px;
}
.regService {
  padding: 100px 0;
}
.regService .serviceItems {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.05)), to(rgba(116, 97, 224, 0.05)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  border-radius: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.regService .serviceItems::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0px;
  background: #0c1524;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
.regService .serviceItems:hover::before {
  top: 0;
}
.regService .serviceItems:hover .serviceItemsBody h4 {
  color: #ffffff;
}
.regService .serviceItems:hover .serviceItemsBody p {
  color: #ffffff;
}
.regService .serviceItems .iconBox {
  background-color: #ec7b13;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.regService .serviceItems .iconBox img {
  width: 40px;
}
.regService .serviceItems .serviceItemsBody h4 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.regService .serviceItems .serviceItemsBody p {
  margin: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 25px;
}
.regService .serviceItems .serviceItemsBody a {
  display: inline-block;
  color: #ec7b13;
  font-size: 18px;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.whyChooseUs {
  padding: 0px 0 100px 0;
}
.whyChooseUs .heading .title {
  font-size: 42px;
  line-height: 52px;
}
.whyChooseUs .chooseUsItems {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.whyChooseUs .chooseUsItems .icon img {
  width: 30px;
}
.whyChooseUs .chooseUsItems .bodyContent h4 {
  margin-left: 15px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
}
.ctaBox h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 64px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .ctaBox h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.ctaBox .btnWrap {
  text-align: end;
}
@media screen and (max-width: 767px) {
  .ctaBox .btnWrap {
    text-align: start;
    margin-top: 20px;
  }
}
.textimonials {
  padding: 100px 0;
}
.textimonials .heading .title {
  font-size: 42px;
  line-height: 52px;
}
.textimonials .textimonialsItems .textimonialsHeader {
  display: flex;
  align-items: center;
}
.textimonials .textimonialsItems .textimonialsHeader .autherPicture {
  margin-bottom: 20px;
}
.textimonials .textimonialsItems .textimonialsHeader .autherPicture img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 15px;
}
.textimonials .textimonialsItems .textimonialsHeader .authorContent h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}
.textimonials .textimonialsItems .textimonialsHeader .authorContent p {
  color: #614aeb;
  font-size: 13px;
}
.textimonials .textimonialsItems .textimonialsBody .arrow a img {
  width: 55px;
}
.textimonials .owl-nav button.owl-next,
.textimonials .owl-nav button.owl-prev {
  background: #ec7b13;
  color: #ffffff;
  border: none;
  padding: 0 8px !important;
  font: inherit;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  font-size: 23px;
  margin: 0 3px;
}
.regPopulerServices {
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.05)), to(rgba(116, 97, 224, 0.05)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  padding: 100px 0;
  margin-bottom: 100px;
}
.regPopulerServices .populerServicesBox {
  text-align: center;
  padding-top: 30px;
}
.regPopulerServices .populerServicesBox .number {
  width: 100px;
  height: 100px;
  font-size: 56px;
  border-radius: 50px;
  color: #ec7b13;
  border: 2px solid #ec7b13;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.regPopulerServices .populerServicesBox .number span {
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  background: #ec7b13;
  border-radius: 50px;
  -webkit-animation: ripple 0.7s linear infinite;
  animation: ripple 0.7s linear infinite;
}
.regPopulerServices .populerServicesBox .content h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
}
.footerSection {
  padding: 100px 0 0 0;
  background-color: #614aeb;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footerSection {
    text-align: center;
  }
}
.footerSection .logoBox .logo {
  display: inline-block;
  width: 200px;
  margin-bottom: 15px;
}
.footerSection .logoBox .logo img {
  width: 100%;
}
.footerSection .logoBox p {
  margin-top: 20px;
}
.footerSection .logoBox p a {
  color: #ffffff;
  display: inline-block;
  margin-left: 10px;
}
.footerSection .navItems h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footerSection .navItems h2 {
    margin-top: 25px;
    margin-bottom: 5px;
  }
}
.footerSection .navItems ul li {
  padding-bottom: 20px;
}
.footerSection .navItems ul li a {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footerSection .navItems ul li a {
    color: #f1a800;
  }
}
.footerSection .navItems ul li a:hover {
  color: #f1a800;
}
@media screen and (max-width: 767px) {
  .footerSection .navItems ul li {
    padding-bottom: 5px;
  }
}
.footerSection .copyright {
  border-top: 1px solid #ffffff30;
  padding: 25px 0;
  text-align: center;
  margin-top: 60px;
}
.footerSection .copyright p {
  color: #ffffff;
}
.footerSection .copyright .copyrightNav {
  display: flex;
  align-items: center;
}
.footerSection .copyright .copyrightNav li {
  padding-right: 20px;
}
.footerSection .copyright .copyrightNav li a {
  color: #ffffff;
}
.footerSection .copyright .copyrightNav li a:hover {
  color: #f1a800;
}
.social {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9999;
}
.social ul {
  padding: 0px;
  transform: translate(116px, 0);
}
.social ul li {
  display: block;
  margin: 5px;
  background: rgba(234, 123, 19, 0.31);
  width: 170px;
  text-align: right;
  padding: 10px;
  border-radius: 30px 0 0 30px;
  transition: all 1.5s;
}
.social ul li:hover {
  transform: translate(-112px, 0);
  background: #ec7b13;
  transition: all 1.5s;
}
.social ul li:hover img {
  background: #ffffff;
}
.social ul li a {
  display: inline-block;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
}
.social ul li a img {
  margin-right: 5px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: rotateAnimation 2s linear infinite;
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.regInnerBanner {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.05)), to(rgba(116, 97, 224, 0.05)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
}
.regInnerBanner .bannerContent h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.regInnerBanner .bannerContent .breadcrumb {
  display: inline-block;
  border-radius: 10px;
  background-color: #614aeb;
  padding: 10px 20px;
  margin-top: 10px;
}
.regInnerBanner .bannerContent .breadcrumb li {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  padding: 0 20px;
}
.regInnerBanner .bannerContent .breadcrumb li::after {
  content: "/";
  position: absolute;
  right: -8px;
  top: 0;
  font-size: 18px;
  color: #ffffff;
}
.regInnerBanner .bannerContent .breadcrumb li:last-child::after {
  content: inherit;
}
.contentSecWrap {
  padding: 100px 0;
}
.contentSecWrap .pictureBox {
  background: -webkit-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  padding: 15px;
  border-radius: 10px;
}
.pricingItem {
  padding: 40px 30px;
  border-radius: 40px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .pricingItem {
    margin-bottom: 30px;
    height: auto;
  }
}
.pricingItem .pricingHeader {
  padding: 20px 0;
  border-bottom: 1px solid rgba(122, 148, 179, 0.21);
}
.pricingItem .pricingHeader h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin: 15px 0 0 0;
}
.pricingItem .pricingHeader h6 {
  font-size: 14px;
  font-weight: 600;
  color: #614aeb;
  margin-bottom: 0;
  margin-top: 5px;
  text-transform: capitalize;
}
.pricingItem .pricingHeader p {
  font-size: 14px;
  margin: 0;
}
.pricingItem .pricingHeader .pricingContent h2 {
  color: #111827;
  font-size: 52px;
  line-height: 56px;
  font-weight: 800;
  margin: 15px 0;
}
.pricingItem .pricingBody {
  padding: 30px 0;
}
.pricingItem .pricingBody li {
  padding-bottom: 10px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #111827;
  position: relative;
}
.pricingItem .pricingBody li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #111827;
  border-radius: 50px;
}
.pricingItem .pricingBody li:last-child {
  padding-bottom: 0;
}
.pricingItem .pricingBody li svg {
  fill: #007cff;
  margin-right: 10px;
  height: 20px;
  width: 20px;
}
.pricingItem .pricingFooter {
  padding: 30px 0 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(122, 148, 179, 0.21);
}
.pricingItem .pricingFooter a {
  border: 2px solid #595f6c;
  padding: 18px 51px;
  color: #111827;
  border-radius: 50px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.pricingItem .pricingFooter a:hover {
  background-color: #111827;
  border: 2px solid #111827;
  color: #ffffff;
}
.pricingItem:hover {
  transform: translateY(-10px);
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.15)), to(rgba(116, 97, 224, 0.15)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.15), rgba(116, 97, 224, 0.15));
}
@media screen and (max-width: 767px) {
  .pricingItem:hover {
    transform: inherit;
  }
}
.highlighterOne {
  background: -webkit-gradient(linear, left top, right top, from(rgba(92, 183, 246, 0.25)), to(rgba(92, 183, 246, 0.07)));
  background: linear-gradient(90deg, rgba(0, 169, 236, 0.32), rgba(40, 57, 149, 0.08));
}
.highlighterTwo {
  background: -webkit-gradient(linear, left top, right top, from(rgba(92, 183, 246, 0.25)), to(rgba(92, 183, 246, 0.07)));
  background: linear-gradient(90deg, rgba(182, 217, 137, 0.34), rgba(6, 99, 42, 0.09));
}
.highlighterThree {
  background: -webkit-gradient(linear, left top, right top, from(rgba(250, 168, 30, 0.3)), to(rgba(250, 168, 30, 0.3)));
  background: linear-gradient(90deg, rgba(250, 168, 30, 0.3), rgba(234, 33, 67, 0.06));
}
.regTabService {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.2)), to(rgba(192, 109, 243, 0.2)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.2), rgba(116, 97, 224, 0.24) 100%);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}
.regTabService .nav-link {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  border-radius: 50px;
}
.regTabService .nav-link:hover {
  border-color: transparent;
}
.regTabService .nav-link.active {
  background-color: #614aeb;
  border-color: #614aeb;
  color: #ffffff;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  .regTabService .nav-link.active {
    background-color: transparent;
    border-color: transparent;
    color: #614aeb;
  }
}
.regTabPackage {
  max-width: 100%;
}
.other-service-box table {
  border-radius: 30px;
  overflow: hidden;
}
.other-service-box table tr {
  vertical-align: middle;
}
.other-service-box table tr td {
  padding: 15px;
  border-bottom: none;
  text-align: center;
}
.other-service-box table tr td h4 {
  font-size: 18px;
  color: #5c6068;
}
@media screen and (max-width: 767px) {
  .other-service-box table tr td h4 {
    font-size: 14px;
  }
}
.other-service-box table tr td a {
  border: 2px solid #614aeb;
  padding: 8px 20px;
  color: #2a0d9f;
  border-radius: 50px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .other-service-box table tr td a {
    width: 126px;
  }
}
.other-service-box table tr td a:hover {
  background-color: #614aeb;
  color: #ffffff;
}
.other-service-box table tr td .price {
  font-weight: 700;
}
.other-service-box table tr td .title {
  color: #614aeb;
}
.other-service-box table tr:nth-child(even) {
  background: linear-gradient(180deg, #f8c20a1f 0, #f8c20a08 100%);
}
.other-service-box table tr:nth-child(odd) {
  background: linear-gradient(180deg, #ff66921f 0, #ff669208 100%);
}
.other-service-box table thead tr {
  background: linear-gradient(180deg, #635bff1f 0, #635bff08 100%) !important;
}
.other-service-box table thead tr th {
  border-bottom: none;
  padding: 15px;
  color: #614aeb;
  text-align: center;
}
.other-service-box table thead tr th:first-child {
  width: 65%;
}
@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 123, 19, 0.32), 0 0 0 4px rgba(236, 123, 19, 0.32), 0 0 0 8px rgba(236, 123, 19, 0.32), 0 0 0 12px rgba(236, 123, 19, 0.32);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(236, 123, 19, 0.32), 0 0 0 8px rgba(236, 123, 19, 0.32), 0 0 0 12px rgba(236, 123, 19, 0.32), 0 0 0 16px rgba(236, 123, 19, 0.32);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 123, 19, 0.32), 0 0 0 4px rgba(236, 123, 19, 0.32), 0 0 0 8px rgba(236, 123, 19, 0.32), 0 0 0 12px rgba(236, 123, 19, 0.32);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(236, 123, 19, 0.32), 0 0 0 8px rgba(236, 123, 19, 0.32), 0 0 0 12px rgba(236, 123, 19, 0.32), 0 0 0 16px rgba(236, 123, 19, 0);
  }
}
.aboutUsPageWrap {
  padding: 100px 0;
}
.aboutUsPageWrap .whyChooseUsBox .whyChooseUsBoxItems {
  text-align: center;
  margin-bottom: 60px;
}
.aboutUsPageWrap .whyChooseUsBox .whyChooseUsBoxItems .icon {
  width: 100px;
  margin: 0 auto 15px auto;
}
.aboutUsPageWrap .whyChooseUsBox .whyChooseUsBoxItems .icon img {
  width: 100%;
}
.aboutUsPageWrap .whyChooseUsBox .whyChooseUsBoxItems .details h5 {
  font-weight: 700;
}
.aboutListingWrap {
  background: -webkit-gradient(linear, left top, right top, from(rgba(192, 109, 243, 0.05)), to(rgba(116, 97, 224, 0.05)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.05), rgba(116, 97, 224, 0.05) 100%);
  margin-bottom: 100px;
  padding: 80px 0;
}
.aboutListingWrap .aboutListing li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 20px;
  border-left: 1px solid #614aeb;
  height: 100%;
}
.aboutListingWrap .aboutListing li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  background: rgba(97, 74, 235, 0.34);
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.aboutListingWrap .aboutListing li::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 7px;
  background: #614aeb;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  z-index: 1;
}
.aboutListingWrap .aboutListing li:last-child {
  border-left: inherit;
}
.aboutListingWrap .aboutListing li h2 {
  font-size: 22px;
  font-weight: 700;
}
.registerWrap {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .registerWrap {
    padding: 40px 0;
  }
}
.registerWrap .formBox {
  background: -webkit-gradient(linear, left top, right top, from(rgba(192 109 243 / 15%)), to(rgba(116 97 224 / 43%)));
  background: linear-gradient(90deg, rgba(192, 109, 243, 0.15), rgba(116, 97, 224, 0.43) 100%);
  border-radius: 30px;
  padding: 80px 30px 70px 30px;
}
.commonTitle h3 {
  font-size: 22px;
  font-weight: 700;
}
.menuBtn {
  display: none;
}
@media screen and (max-width: 992px) {
  .menuBtn {
    height: 30px;
    width: 30px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 101;
  }
  .menuBtn > span {
    background-color: #2a0d9f;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -15px;
    transition: height 100ms;
  }
  .menuBtn > span:after,
  .menuBtn > span:before {
    content: '';
    background-color: #2a0d9f;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    transition: all 200ms;
  }
  .menuBtn > span:after {
    top: -7px;
  }
  .menuBtn > span:before {
    bottom: -7px;
  }
  .menuBtn.act > span {
    height: 0;
  }
  .menuBtn.act > span:after,
  .menuBtn.act > span:before {
    background-color: #2a0d9f;
    top: 1px;
  }
  .menuBtn.act > span:after {
    transform: rotate(45deg);
  }
  .menuBtn.act > span:before {
    transform: rotate(-45deg);
  }
  .mainMenu {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    height: 100vh;
    width: 100%;
    display: table;
    text-align: center;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0);
  }
  .mainMenu.act {
    opacity: 1;
    transform: scale(1);
  }
  .mainMenu.act ul li {
    opacity: 1;
    transform: translateX(0);
  }
  .mainMenu ul {
    display: table-cell;
    vertical-align: middle;
  }
  .mainMenu a {
    color: #2a0d9f;
    display: inline-block;
    font-size: 18px;
  }
  .mainMenu a.suBtn {
    color: #fff;
  }
}
