@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --theme-color: #080808;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}
body .fix {
  overflow: hidden;
}

p {
  font-size: 16px;
  color: #5d5d5d;
  line-height: 24px;
  letter-spacing: -0.2px;
}

img {
  max-width: 100%;
}

.bb-1 {
  border-bottom: 1px solid rgba(157, 77, 31, 0.1);
}

.btn {
  border-radius: 45px;
  border: 1px solid var(--theme-color);
  padding: 7px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: -0.1px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .btn {
    padding: 6px 24px;
    font-size: 12px;
  }
}
.btn i {
  margin-right: 5px;
}
.btn.btn-default {
  background-color: transparent;
  transition: all 0.35s;
}
.btn.btn-primary {
  color: #fff;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  border: 0;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.231372549);
}
.btn.btn-default:before, .btn.btn-default:after, .btn.btn-primary:before, .btn.btn-primary:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, #7d2cfd, #d91cc2);
  z-index: -1;
  transition: all 0.35s;
}
.btn.btn-default:before, .btn.btn-primary:before {
  opacity: 0.5;
}
.btn.btn-default:after, .btn.btn-primary:after {
  transition-delay: 0.2s;
}
.btn.btn-default:hover, .btn.btn-primary:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0px 13px 50px rgba(0, 0, 0, 0.231);
}
.btn.btn-default:hover:before, .btn.btn-default:hover:after, .btn.btn-primary:hover:before, .btn.btn-primary:hover:after {
  left: 0;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.ne-heading {
  font-size: 40px;
  color: var(--theme-color);
  letter-spacing: -0.3px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .ne-heading {
    font-size: 32px;
  }
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
}
header .main-header {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
header .main-header .logo {
  max-width: 159px;
}
header .main-header .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  header .main-header .logo {
    max-width: 100px;
  }
}
header .main-header .right-side {
  display: flex;
  align-items: center;
}
header.is-sticky {
  z-index: 999;
  background-color: #fff;
  animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}
header.is-sticky .main-header {
  padding: 10px 0;
}

.text-left {
  text-align: left !important;
}

.app-button {
  background-color: #000000;
  width: 154px;
  padding: 4px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-transform: capitalize;
}
.app-button span {
  font-size: 10px;
  display: block;
}
.app-button p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

main {
  min-height: 50vh;
}

.home-banner {
  padding: 10px 0 65px;
  padding-top: 126px;
}
.home-banner h1 {
  font-size: 54px;
  color: var(--theme-color);
  letter-spacing: -3px;
  font-weight: bold;
}
.home-banner .banner-figure {
  position: relative;
}
@media (min-width: 992px) {
  .home-banner h1 {
    font-size: 40px;
  }
  .home-banner .banner-figure {
    width: 360px;
  }
  .home-banner .banner-figure.left-figure {
    margin-left: -40px;
    margin-right: -20px;
  }
  .home-banner .banner-figure.right-figure {
    margin-top: auto;
    margin-bottom: -90px;
    margin-left: -40px;
  }
}
@media (min-width: 1200px) {
  .home-banner h1 {
    font-size: 54px;
  }
  .home-banner .banner-figure {
    width: 460px;
  }
}
@media (max-width: 767px) {
  .home-banner {
    background-position: 160px top;
  }
  .home-banner .banner-content {
    padding: 0px 0 40px;
  }
  .home-banner h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

.coming-soon {
  font-size: 14px;
  color: #080808;
  font-weight: 600;
}

.ne-card {
  margin-top: -65px;
  padding: 50px 0 100px;
  position: relative;
}
@media (min-width: 1200px) {
  .ne-card:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    height: 300px;
    width: 150px;
    background-image: url(../images/Home-Page/Shape-1-Dark-Color.png);
    background-repeat: no-repeat;
    z-index: -1;
    background-position: center;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .ne-card {
    background-position: -30px 100%;
    padding-bottom: 50px;
  }
  .ne-card .ne-card-figure {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .ne-card .ne-card-content {
    padding-left: 8.33333%;
    padding-right: 4%;
  }
}
.ne-card .ne-card-content p {
  color: #343434;
}
.ne-card .ne-card-content p b {
  font-size: 18px;
  font-weight: 500;
}

.ne-payment-solutions {
  position: relative;
}
@media (min-width: 992px) {
  .ne-payment-solutions:before {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    height: 400px;
    width: 100px;
    background-image: url(../images/Home-Page/Shape-1-Light-Color.png);
    background-repeat: no-repeat;
    z-index: -1;
    background-position: center;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .ne-payment-solutions::before {
    width: 140px;
  }
}
.ne-payment-solutions .single-payment {
  background-color: #fff;
  border-radius: 40px;
  padding: 0 20px 0 60px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  box-shadow: 0px 12px 54px rgba(0, 0, 0, 0.18);
  background-image: url(../images/Home-Page/tick-icon.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  height: 62px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ne-payment-solutions .ne-heading {
  margin: -30px 0 33px;
}
.ne-payment-solutions .payment-cards p {
  margin-top: 18px;
}

.testimonials {
  padding: 60px 0 100px;
  position: relative;
}
@media (min-width: 1200px) {
  .testimonials:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 110px;
    height: 300px;
    width: 150px;
    background-image: url(../images/Home-Page/Shape-1-Dark-Color.png);
    background-repeat: no-repeat;
    z-index: -1;
    background-position: center;
    background-size: contain;
  }
}

.testimonial-slider {
  padding-bottom: 60px;
}
.testimonial-slider .single-slider {
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.18);
}
.testimonial-slider .single-slider p {
  color: #000;
  font-size: 16px;
  line-height: 28px;
}
.testimonial-slider .single-slider h6 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
}

.ne-card-setup {
  padding: 70px 0;
  background-image: linear-gradient(180deg, #ffecfd, transparent, transparent);
}
.ne-card-setup .child {
  position: relative;
}
@media (min-width: 992px) {
  .ne-card-setup .child::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 110px;
    height: 400px;
    width: 100px;
    background-image: url(../images/Home-Page/Shape-1-Light-Color.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .ne-card-setup .child:before {
    content: "";
    position: absolute;
    left: -4px;
    bottom: 210px;
    height: 300px;
    width: 150px;
    background-image: url(../images/Home-Page/Shape-1-Dark-Color.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .ne-card-setup .child::after, .ne-card-setup .child::before {
    width: 140px;
  }
}
.ne-card-setup .ne-card-steps-wrapper {
  padding-top: 49px;
}
.ne-card-setup .ne-card-steps-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.ne-card-setup .ne-card-steps-wrapper ul li {
  width: 25%;
  text-align: center;
}
.ne-card-setup .ne-card-steps-wrapper ul li .steps-content {
  width: 157px;
  margin: auto;
}
.ne-card-setup .ne-card-steps-wrapper ul li .number {
  font-size: 60px;
  color: rgba(157, 77, 31, 0.1);
  font-weight: bold;
  letter-spacing: -0.3px;
  line-height: 1;
}
.ne-card-setup .ne-card-steps-wrapper ul li .icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  box-shadow: 0 13px 43px rgba(46, 7, 110, 0.2);
  margin: -20px auto 15px;
  z-index: 1;
  position: relative;
}
.ne-card-setup .ne-card-steps-wrapper ul li .ring {
  position: relative;
  margin-bottom: 15px;
  height: 18px;
}
.ne-card-setup .ne-card-steps-wrapper ul li .ring span {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  margin: 0 auto;
  display: inline-block;
}
.ne-card-setup .ne-card-steps-wrapper ul li .ring:before, .ne-card-setup .ne-card-steps-wrapper ul li .ring:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% - 17px);
  background-color: rgba(157, 77, 31, 0.1);
}
.ne-card-setup .ne-card-steps-wrapper ul li .ring:before {
  left: 0;
}
.ne-card-setup .ne-card-steps-wrapper ul li .ring:after {
  right: 0;
}
.ne-card-setup .ne-card-steps-wrapper ul li h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-color);
  letter-spacing: -0.3px;
}
.ne-card-setup .ne-card-steps-wrapper ul li p {
  font-size: 14px;
  letter-spacing: 0.1px;
}
.ne-card-setup .ne-card-steps-wrapper ul li a {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease22px;
}
.ne-card-setup .ne-card-steps-wrapper ul li a:hover {
  background: -webkit-linear-gradient(45deg, #d91cc2, #7d2cfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-underline-position: under;
}
.ne-card-setup .ne-card-steps-wrapper ul li:first-child .ring::before {
  display: none;
}
.ne-card-setup .ne-card-steps-wrapper ul li:last-child .ring::after {
  display: none;
}
@media (max-width: 767px) {
  .ne-card-setup {
    padding-bottom: 0;
  }
  .ne-card-setup .ne-card-steps-wrapper ul {
    flex-flow: wrap;
  }
  .ne-card-setup .ne-card-steps-wrapper ul li {
    width: 50%;
    padding-bottom: 30px;
  }
  .ne-card-setup .ne-card-steps-wrapper ul li:nth-child(3) .ring::before {
    display: none;
  }
  .ne-card-setup .ne-card-steps-wrapper ul li:nth-child(2) .ring::after {
    display: none;
  }
}

.slick-slider .slick-slide > div > div {
  vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
  bottom: 0%;
  color: #777777;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  line-height: 1;
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
  z-index: 1;
  border: 1px solid #000;
  background-color: transparent;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.slick-arrow-style button.slick-arrow.slick-prev {
  left: 35%;
}
.slick-arrow-style button.slick-arrow.slick-next {
  right: 35%;
}
.slick-arrow-style button.slick-arrow:hover {
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  border: 0;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.231372549);
}
.slick-arrow-style button.slick-arrow:hover svg path {
  stroke: #fff;
}

.slick-column-10 .slick-list .slick-slide {
  padding: 20px 10px 40px;
}

.slick-dot-style ul.slick-dots {
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  padding-left: 0;
}

.slick-dot-style ul.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  display: block;
  text-indent: -5000px;
  cursor: pointer;
  border-radius: 0;
  transition: 0.4s;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.slick-dot-style ul.slick-dots li.slick-active button {
  background-color: #000;
}

footer {
  padding: 60px 0 0;
  background-color: #080808;
}
footer .footer-logo {
  padding-bottom: 38px;
  display: block;
}
footer .footer-widgets {
  padding: 20px 0;
}
footer .footer-widgets .row .col-md-6 {
  position: relative;
}
footer .footer-widgets .row .col-md-6 .single-widget {
  display: flex;
}
footer .footer-widgets .row .col-md-6 .single-widget .icon {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 1px solid rgba(88, 81, 35, 0.08);
  box-shadow: 0px 5px 30px rgba(88, 81, 35, 0.16);
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-right: 10px;
  flex: 0 0 auto;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  border: 0;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.231372549);
}
footer .footer-widgets .row .col-md-6 .single-widget .icon img {
  max-height: 22px;
}
@media (max-width: 991px) {
  footer .footer-widgets .row .col-md-6 .single-widget {
    margin-bottom: 30px;
  }
}
footer .footer-widgets h6 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
footer .footer-widgets a,
footer .footer-widgets p {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.11px;
  display: block;
}
footer .social-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 10px;
}
footer .social-widget a {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
footer .social-widget a img {
  position: relative;
  transition: 0.5s;
  z-index: 3;
}
footer .social-widget a:hover img {
  transform: rotateY(360deg);
}
footer .footer-bottom {
  padding-top: 20px;
}
footer .footer-bottom p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-align: center;
}
footer .footer-bottom p span {
  color: #fff;
}
footer .footer-bottom p a {
  color: #fff;
  text-decoration: none;
}
footer .footer-bottom p a:hover {
  text-decoration: underline;
  text-underline-position: under;
}

footer .social-widget a:hover:before {
  top: 0;
}

footer .social-widget a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

footer .social-widget a:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #000;
  transition: 0.5s;
  z-index: 2;
  border-radius: 50%;
}

footer .social-widget a:hover:after {
  top: 100%;
}

footer .social-widget a .hover {
  display: none;
}

footer .social-widget a:hover .normal {
  display: none;
}

footer .social-widget a:hover .hover {
  display: inline-block;
}

footer .social-widget a.fb-icon {
  border-color: #1877f2;
}

footer .social-widget a.insta-icon {
  border-color: #761cc9;
}

footer .social-widget a.twitter-icon {
  border-color: #1da1f2;
}

footer .social-widget a.yt-icon {
  border-color: #ff0001;
}

footer .social-widget a.insta-icon {
  border-color: #1877f2;
}

footer .social-widget a.tt-icon {
  border-color: #fff;
}

footer .social-widget a.fb-icon:before {
  background: #1877f2;
}

footer .social-widget a.insta-icon:before {
  background: linear-gradient(-180deg, #fbcb2a 0%, #fc3282 50%, #761cc9 100%);
}

footer .social-widget a.twitter-icon:before {
  background: #1da1f2;
}

footer .social-widget a.yt-icon:before {
  background: #ff0001;
}

footer .social-widget a.tt-icon:before {
  background: #fff;
}

/* ----scroll to top css start ----*/
.scroll-top {
  bottom: -50px;
  cursor: pointer;
  height: 42px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 42px;
  z-index: 9999;
  transition: 0.4s;
  border-radius: 50%;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  border: 0;
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.231372549);
  visibility: hidden;
  opacity: 0;
}

.scroll-top i {
  line-height: 42px;
  color: #fff;
  font-size: 14px;
}

.scroll-top.visible {
  bottom: 34px;
  visibility: visible;
  opacity: 1;
}

.scroll-top:hover {
  background-color: #222222;
}

/* Scroll down */
.comments-icon {
  bottom: 91px;
  cursor: pointer;
  height: 42px;
  position: fixed;
  right: 20px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 42px;
  z-index: 9999;
  transition: 0.4s;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: var(--theme-color);
  color: #fff;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.comments-icon:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

@media (min-width: 500px) {
  .ne-modal .modal-dialog {
    max-width: 480px;
  }
  .ne-modal .modal-dialog.modal-sm {
    max-width: 360px;
  }
}
.ne-modal .modal-content {
  box-shadow: 7px 18px 30px rgba(88, 81, 35, 0.14), -8px -7px 10px rgba(0, 0, 0, 0.12) inset;
  border-radius: 30px;
}
.ne-modal .modal-body {
  padding: 60px;
}
.ne-modal .modal-body .close {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 18px;
  color: #a9a9a9;
}
.ne-modal .modal-body .close:hover {
  color: #000;
}
.ne-modal .modal-body h4 {
  font-size: 30px;
  letter-spacing: -0.4px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.ne-modal .modal-sm .modal-body {
  padding: 60px 30px 40px;
}
@media (max-width: 500px) {
  .ne-modal .modal-sm .modal-body {
    padding: 50px 15px 40px;
  }
}
@media (max-width: 500px) {
  .ne-modal .modal-body {
    padding: 50px 15px 40px;
  }
}

.login-form {
  position: relative;
}
.login-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.login-form .form-group label {
  position: absolute;
  left: 0;
  top: 8px;
  transition: all 0.2s;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 22px;
  letter-spacing: -0.2px;
}
.login-form .form-group .form-control {
  border: 0;
  background: transparent;
  border-bottom: 1px solid #e2e2e2;
  color: #000;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  letter-spacing: -0.1px;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}
.login-form .form-group select.form-control {
  background: url(../images/icons/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center right;
}
.login-form .form-group.focus label {
  transform: translateY(-20px);
}
.login-form .form-group .status {
  font-size: 12px;
  letter-spacing: -0.1px;
  color: #717171;
  text-align: right;
  margin-top: 5px;
}
.login-form .form-group .btn-eye {
  background-color: transparent;
  position: absolute;
  right: 0;
  bottom: 7px;
  cursor: pointer;
}
.login-form .btn-primary {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: -2px -6px 10px rgba(255, 255, 255, 0.12), inset 2px 6px 10px rgba(255, 255, 255, 0.5), inset -2px -6px 10px rgba(0, 0, 0, 0.5), 0px 10px 40px rgba(88, 81, 35, 0.12);
  border: 0;
  width: 300px;
  height: 42px;
  border-radius: 45px;
  line-height: 24px;
  position: relative;
  margin: auto;
  text-transform: uppercase;
}
.login-form .forget-password {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: block;
  color: var(--theme-color);
  text-decoration: none;
  margin-bottom: 16px;
}
.login-form .forget-password:hover {
  color: var(--theme-color);
}
.login-form p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: block;
  color: #5d5d5d;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
  margin-bottom: 0;
  margin-top: 16px;
}
.login-form p a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.login-form p a:hover {
  color: var(--theme-color);
}

.ne-card-tabs {
  min-height: 100vh;
  padding: 116px 0 0;
  position: relative;
}
@media (min-width: 1200px) {
  .ne-card-tabs:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 400px;
    width: 110px;
    background-image: url(../images/Home-Page/Shape-1-Dark-Color.png);
    background-repeat: no-repeat;
    z-index: -1;
    background-position: center;
    background-size: contain;
  }
}
.ne-card-tabs .nav-tabs {
  justify-content: center;
  border: 0;
}
.ne-card-tabs .nav-tabs li {
  padding: 10px;
}
.ne-card-tabs .nav-tabs li .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.3px;
  background-color: var(--theme-color);
  border: 0;
  padding: 12px 30px;
  border-radius: 40px;
  position: relative;
  font-weight: 600;
  box-shadow: inset 2px 6px 10px rgba(255, 255, 255, 0.5), inset -2px -6px 10px rgba(0, 0, 0, 0.5), 0px 10px 40px rgba(0, 0, 0, 0.15);
}
.ne-card-tabs .nav-tabs li .nav-link.active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
}
.ne-card-tabs .nav-tabs li .nav-link.active::before {
  visibility: visible;
  opacity: 1;
  font-weight: 600;
}
.ne-card-tabs .nav-tabs li:not(:last-child) .nav-link {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ne-card-tabs .tab-content {
  padding: 50px 0;
  border-bottom: 4px solid rgba(157, 77, 31, 0.2);
}
.ne-card-tabs .tab-content h4 {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 28px;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.ne-card-tabs .tab-content h5 {
  color: #343434;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 28px;
}
.ne-card-tabs .tab-content h5 .arrow {
  position: absolute;
  left: -130px;
}
@media (max-width: 992px) {
  .ne-card-tabs .tab-content h5 .arrow {
    display: none;
  }
}
.ne-card-tabs .tab-content h6 {
  font-size: 18px;
  color: #343434;
  font-weight: 600;
  margin-bottom: 16px;
}
.ne-card-tabs .tab-content p {
  color: #343434;
}
.ne-card-tabs .tab-content ul {
  padding-left: 22px;
}
.ne-card-tabs .tab-content ul li {
  color: #343434;
}
.ne-card-tabs .tab-content .file-input-box .input-box {
  padding: 10px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--theme-color);
  border-radius: 43px;
  margin-bottom: 5px;
  cursor: pointer;
  color: var(--theme-color);
}
.ne-card-tabs .tab-content .file-input-box .input-box p {
  margin: 0;
  text-transform: uppercase;
  color: var(--theme-color);
  font-weight: 600;
}
.ne-card-tabs .tab-content .file-input-box .input-box p .fa {
  margin-right: 10px;
}
.ne-card-tabs .tab-content .file-input-box small {
  font-size: 12px;
  color: #a3a3a3;
  display: block;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files h5 {
  margin-bottom: 10px;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files .file-list {
  overflow-y: auto;
  list-style-type: none;
  padding: 0 10px 10px 0;
  margin: 0;
  transition: 0.3s all ease-in-out;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files .file-list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cacaca;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files .file-list .item:not(:last-child) {
  margin-bottom: 5px;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files .file-list .item .remove {
  display: grid;
  place-items: center;
  color: #c0392b;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.ne-card-tabs .tab-content .file-input-box .wrapper-file-section .selected-files .file-list .item .remove:hover {
  color: #e74c3c;
}
.ne-card-tabs .tab-content .qr-code {
  max-width: 210px;
  margin: auto;
}
.ne-card-tabs .tab-content .qr-code img {
  margin-bottom: 30px;
}
.ne-card-tabs .tab-content .qr-code .btn-primary {
  width: 160px;
  margin-bottom: 8px;
}
.ne-card-tabs .tab-content .qr-code p {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  background: -webkit-linear-gradient(45deg, #d91cc2, #7d2cfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ne-card-tabs .tab-content .qr-code p.choco-clr {
  color: var(--theme-color);
}
.ne-card-tabs .tab-content .kit-form label {
  font-size: 16px;
  letter-spacing: 0.1px;
  color: #343434;
  line-height: 24px;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 5px;
}
.ne-card-tabs .tab-content .kit-form form {
  border-radius: 35px;
  border: 1px solid var(--theme-color);
  padding: 5px;
  box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.11);
  display: flex;
}
.ne-card-tabs .tab-content .kit-form form input {
  border: 0;
  width: 100%;
  background-color: transparent;
  padding: 0 15px;
  color: #343434;
  font-size: 18px;
}
.ne-card-tabs .tab-content .kit-form form input:focus {
  outline: none;
  box-shadow: none;
}
.ne-card-tabs .tab-content .kit-form form .btn-primary {
  width: 215px;
  flex: 0 0 auto;
  padding: 13px 30px;
}
@media (max-width: 767px) {
  .ne-card-tabs .tab-content .kit-form form .btn-primary {
    width: auto;
  }
}
@media (max-width: 767px) {
  .ne-card-tabs {
    padding: 71px 0 0;
  }
  .ne-card-tabs .nav-tabs li {
    padding: 5px 3px;
  }
  .ne-card-tabs .nav-tabs li .nav-link {
    padding: 5px 15px;
    font-size: 14px;
  }
  .ne-card-tabs .nav-tabs li .nav-link::before {
    top: -5px;
  }
  .ne-card-tabs .tab-content h4 {
    font-size: 24px;
  }
  .ne-card-tabs .tab-content h6 {
    font-size: 18px;
  }
  .ne-card-tabs .tab-content .image {
    margin-top: 20px;
  }
  .ne-card-tabs .tab-content .qr-code {
    margin-bottom: 30px;
  }
}

.ne-form .form-group {
  margin-bottom: 30px;
}
.ne-form label {
  font-size: 14px;
  color: #707070;
  margin-bottom: 10px;
  display: block;
}
.ne-form .form-control {
  border-radius: 45px;
  background-color: #f6f6f6;
  border: 1px solid #dfdfdf;
  height: 52px;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #343434;
}
.ne-form .form-control::-moz-placeholder {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
}
.ne-form .form-control::placeholder {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
}
.ne-form .form-control:focus {
  outline: none;
  box-shadow: 0 10px 46px rgba(60, 24, 4, 0.1);
}
.ne-form .form-upload label {
  position: relative;
  border-radius: 45px;
  background-color: #f6f6f6;
  border: 1px solid #dfdfdf;
  height: 52px;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #343434;
  display: flex;
  align-items: center;
}
.ne-form .form-upload label .fa {
  margin-right: 10px;
}
.ne-form .form-upload label .file-upload {
  position: absolute;
  left: -9999px;
}
.ne-form .form-upload small {
  color: #707070;
  font-size: 13px;
}
.ne-form .btn-submit {
  width: 260px;
  height: 44px;
  font-size: 16px;
  letter-spacing: 0.1px;
}
.ne-form .card {
  margin-bottom: 10px;
  border: 0;
}
.ne-form .card:not(:last-child) {
  border-bottom: 1px solid rgba(157, 77, 31, 0.1);
}
.ne-form .card .card-header {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.ne-form .card .card-header .btn-header-link {
  display: block;
  text-align: left;
  color: #080808;
  padding: 5px 0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.ne-form .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  float: right;
}
.ne-form .card .card-body {
  padding: 10px 0;
}
.ne-form .card .card-body a {
  text-decoration: underline;
  text-underline-position: under;
  color: #343434;
}
.ne-form .card .collapse {
  border: 0;
}
@media (max-width: 767px) {
  .ne-form .btn-primary {
    width: auto;
  }
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 1px solid #a8a8a8;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #a8a8a8;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.user-profile {
  cursor: pointer;
}
.user-profile .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #d91cc2, #7d2cfd);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 34px 60px rgba(60, 24, 4, 0.2);
}

.profile-dropdown {
  width: 170px;
  box-shadow: 0 34px 60px rgba(60, 24, 4, 0.2);
  border: 0;
  border-radius: 10px;
}
.profile-dropdown li a {
  padding: 7px 20px;
  text-decoration: none;
  display: block;
  color: #343434;
  font-size: 14px;
}
.profile-dropdown li a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.terms-of-services {
  padding: 76px 0 0;
}
.terms-of-services .terms-of-services-wrapper {
  padding: 40px 0;
}
.terms-of-services h4 {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 28px;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.terms-of-services p {
  color: #343434;
}/*# sourceMappingURL=style.css.map */