@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&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&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden !important;
}
body .fix {
  overflow: hidden;
  min-height: 100vh;
}

p {
  font-size: 14px;
  color: #00061e;
  line-height: 24px;
}

img {
  max-width: 100%;
}

.btn {
  border-radius: 45px;
  border: 1px solid #090909;
  padding: 7px 30px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #090909;
  letter-spacing: -0.1px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(9, 9, 9, 0.1);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn i {
  margin-right: 5px;
}
.btn .arrow-down {
  transform: rotate(-90deg);
}
.btn.btn-default {
  background-color: transparent;
  transition: all 0.35s;
}
.btn.btn-primary {
  background: linear-gradient(-90deg, #29a758, #d1e868);
  color: #00061e;
  overflow: hidden;
  z-index: 1;
  border: 0;
}
.btn.get-started,
.btn.btn-join {
  background: linear-gradient(-90deg, #29a758, #d1e868);
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow:
    -2px -3px 10px rgba(255, 255, 255, 0.12),
    inset 2px 3px 10px rgba(255, 255, 255, 0.5),
    inset -2px -3px 10px rgba(0, 0, 0, 0.5),
    0px 10px 40px rgba(88, 81, 35, 0.12);
  border: 0;
}
.btn.btn-join:before,
.btn.btn-join:after,
.btn.btn-default:before,
.btn.btn-default:after,
.btn.btn-primary:before,
.btn.btn-primary:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background: linear-gradient(-90deg, #29a758, #d1e868);
  z-index: -1;
  transition: all 0.35s;
}
.btn.btn-join:before,
.btn.btn-default:before,
.btn.btn-primary:before {
  opacity: 0.5;
}
.btn.btn-join:after,
.btn.btn-default:after,
.btn.btn-primary:after {
  transition-delay: 0.2s;
}
.btn.btn-join:hover,
.btn.btn-default:hover,
.btn.btn-primary:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 7px 9px 16px rgba(71, 3, 140, 0.151);
}
.btn.btn-join:hover:before,
.btn.btn-join:hover:after,
.btn.btn-default:hover:before,
.btn.btn-default:hover:after,
.btn.btn-primary:hover:before,
.btn.btn-primary:hover:after {
  top: 0;
}
.btn.get-started:hover {
  box-shadow:
    -2px -3px 10px rgba(255, 255, 255, 0.12),
    inset 2px 3px 10px rgba(255, 255, 255, 0.5),
    inset -16px -16px 16px rgba(0, 0, 0, 0.5),
    0px 10px 40px rgba(88, 81, 35, 0.12);
}
.btn:focus {
  outline: none;
}
.gradient-text {
  background: linear-gradient(-90deg, #29a758, #d1e868);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: #00061e;
  font-weight: bold;
}
.bg-secondary {
  background-color: #e5f1fd !important;
}
.section-padding {
  padding: 70px 0;
}

.header-area {
  position: relative;
  z-index: 10;
}
.header-area.is-sticky {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running
    fadeInDown;
}

.main-header {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
}
.main-header .logo {
  max-width: 159px;
}
.main-header .logo img {
  width: 100%;
}
.main-header .right-side {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.desktop-nav ul li {
  position: relative;
}
.desktop-nav ul li a {
  color: #00061e;
  font-size: 14px;
  padding: 15px 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: -0.2px;
  gap: 10px;
}
.desktop-nav ul li a i {
  font-size: 10px;
  transition: all 0.5s ease-in-out;
}

.desktop-nav ul li:first-child a {
  padding-left: 0;
}

.desktop-nav ul li:hover > a,
.desktop-nav ul li.active > a {
  background: -webkit-linear-gradient(-90deg, #29a758, #d1e868);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Banner */

.home-banner {
  background-image: url(../images/Hero-Bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 0;
}
.home-banner .banner-content h1 {
  font-size: 44px;
  line-height: 56px;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
}
.home-banner .banner-content p {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.1px;
  margin-bottom: 30px;
  color: #fff;
}
.home-banner .rectangle-56-complete {
  position: relative;
  border-radius: 16px;
  background-blend-mode: normal;
  box-shadow:
    inset 6px 6px 16px 0px rgba(255, 255, 255, 0.2),
    inset -6px -6px 16px 0px rgb(255 255 255 / 20%),
    5px 7px 16px 5px rgba(0, 6, 30, 0.22);
  overflow: hidden;
  text-align: center;
  padding: 20px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin: calc(var(--bs-gutter-x) * 0.5) 0;
}
.home-banner .rectangle-56-complete h3 {
  font-size: 28px;
  margin-bottom: 0;
  color: #fff;
  font-weight: bold;
}
.home-banner .rectangle-56-complete p {
  margin-bottom: 0;
  font-size: 12px;
}

/* Features */
.single-feature {
  padding: calc(var(--bs-gutter-x) * 0.5) 0;
  height: 100%;
}
.feature-box {
  background: linear-gradient(45deg, #0675e0, #00061e);
  padding: 30px;
  border-radius: 50px;
  box-shadow:
    rgba(0, 0, 0, 0.5) -2px -7px 6px inset,
    rgba(255, 255, 255, 0.5) 2px 7px 6px inset,
    10px 23px 28px rgba(0, 6, 30, 0.28);
  height: 100%;
}
.feature-box .icon {
  background: linear-gradient(75deg, #29a758, #d1e868);
  height: 70px;
  width: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-box h6 {
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 22px;
  font-weight: 600;
}
.feature-box p {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* Accordion */

.metax-accordion .accordion-item {
  background-color: #e5f1fd;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.metax-accordion .accordion-item.open {
  background: linear-gradient(45deg, #0675e0, #00061e);
  box-shadow:
    rgba(0, 0, 0, 0.5) -2px -7px 6px inset,
    rgba(255, 255, 255, 0.5) 2px 7px 6px inset,
    10px 23px 28px rgba(0, 6, 30, 0.28);
  transition: all 0.3s ease-in-out;
}
.metax-accordion .accordion-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 20px 30px;
  transition: all 0.3s ease-in-out;
}
.metax-accordion .accordion-button:not(.collapsed),
.metax-accordion .accordion-body {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.metax-accordion .accordion-body {
  padding: 10px 30px 20px;
}
.metax-accordion .accordion-item:first-of-type .accordion-button {
  transition: all 0.3s ease-in-out;
  border: 0;
}
.metax-accordion .accordion-button::after {
  width: 32px;
  height: 32px;
  background-image: url(../images/arrow-down.png);
  background-size: auto;
  background-position: center;
  border: 2px solid #000;
  border-radius: 50%;
  transform: rotate(0deg);
  transition:
    transform 0.15s ease-in-out,
    background-image 0.15s ease-in-out,
    border 0.15s ease-in-out;
}
.metax-accordion .accordion-button:not(.collapsed)::after {
  background-image:
    linear-gradient(-90deg, #29a758, #d1e868), url(../images/arrow-down.png);
  background-blend-mode: multiply;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  transform: rotate(180deg);
  transition:
    transform 0.3s ease-in-out,
    background-image 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

/* Widgets */
.widgets {
  position: relative;
}
.widgets .single-widget {
  height: 100%;
  padding: calc(var(--bs-gutter-x) * 0.5) 0;
}
.widgets .single-widget .child {
  border-radius: 50px;
  padding: 30px;
  background: #e5f1fd;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.widgets .single-widget h2 {
  font-size: 90px;
  font-weight: bold;
  color: #0675e0;
  font-family: "Archivo", sans-serif;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  transition: all 0.3s ease-in-out;
}
.widgets .single-widget span {
  font-size: 14px;
  color: #0675e0;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
}
.widgets .single-widget h6 {
  font-size: 22px;
  color: #00061e;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.widgets .single-widget p {
  font-size: 14px;
  color: #00061e;
  line-height: 22px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.widgets .single-widget .child:hover {
  background-image: url(../images/widget-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:
    rgba(0, 0, 0, 0.24) -4px -6px 6px inset,
    rgba(255, 255, 255, 0.17) 4px 6px 6px inset,
    10px 23px 28px rgba(0, 6, 30, 0.28);
}
.widgets .single-widget .child:hover h2,
.widgets .single-widget .child:hover span,
.widgets .single-widget .child:hover h6,
.widgets .single-widget .child:hover p {
  color: #fff;
}
.sharing-money {
}
.sharing-money .sharing-header p {
  font-size: 20px;
  line-height: 28px;
}
.sharing-money .sharing-box {
  height: 100%;
  padding: calc(var(--bs-gutter-x) * 0.5) 0;
}
.sharing-money .sharing-box .child {
  border-radius: 30px;
  padding: 30px;
  background: #e5f1fd;
  height: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sharing-money .sharing-box .child p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
.sharing-money .btn.btn-primary {
  gap: 10px;
}
.sharing-money .btn.btn-primary:hover {
  color: #00061e;
  background: linear-gradient(-180deg, #29a758, #d1e868);
}

/* Software Pricing */
.software-pricing {
  background: url(../images/Hero-Section-Banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.software-pricing .single-price {
  background-blend-mode: normal;
  box-shadow:
    inset 10px 10px 16px 0px rgba(255, 255, 255, 0.5),
    inset -10px -10px 16px 0px rgb(255 255 255 / 50%),
    5px 7px 16px 5px rgba(0, 6, 30, 0.22);
  border: 1px solid #fff;
  border-radius: 50px;
  display: grid;
  padding: 30px;
  position: relative;
  margin: calc(var(--bs-gutter-x) * 0.5) 0;
}
.software-pricing .most-popular {
  background: linear-gradient(-180deg, #29a758, #d1e868);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #00061e;
  padding: 7px 20px;
  border-radius: 45px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -17px;
  box-shadow: 7px 8px 9px rgba(9, 9, 9, 0.71);
}
.software-pricing .price-img {
  margin: -15px auto 0;
}
.software-pricing .price-content {
  margin-top: -20px;
}
.software-pricing h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}
.software-pricing p {
  color: #fff;
}
.software-pricing ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.software-pricing ul li {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  letter-spacing: -0.1px;
}
.software-pricing .btn.btn-default {
  color: #fff;
  border-color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.software-pricing .btn.btn-default:hover {
  border-color: transparent;
  color: #00061e;
}
/* Hero Area 2 */
.hero-area-2 {
  background: url(../images/Hero-Section-Banner-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 96px 0;
}
.hero-area-2 .gradient-text {
  font-size: 44px;
  line-height: 56px;
  letter-spacing: -0.3px;
  font-weight: 900;
  margin: 0;
}

/* Metax Content */
.metax-content {
  position: relative;
}
.metax-content h4 {
  color: #00061e;
  font-size: 22px;
  font-weight: bold;
  line-height: 55px;
  letter-spacing: -0.2px;
}
.metax-content p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.metax-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.metax-content ul li {
  color: #00061e;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.1px;
}
/* Footer Styles */
footer {
  padding-top: 30px;
  background-image: url(../images/Hero-Section-Banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 72%;
}
footer .top-footer {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-nav ul li {
  position: relative;
}
footer .footer-nav ul li a {
  color: #fff;
  font-size: 14px;
  padding: 20px 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: -0.2px;
  position: relative;
}
footer .footer-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #d1e868;
  transition: 0.5s;
}
footer .footer-nav ul li:not(:last-child) a::after {
  content: ".";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer .footer-nav ul li:hover a {
  color: #d1e868;
}
footer .footer-nav ul li:hover a::before {
  width: 60%;
}
footer .footer-logo {
  display: flex;
  max-width: 159px;
  justify-content: center;
}
footer .footer-logo img {
  width: 100%;
}
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 img.hover {
  display: none;
}
footer .social-widget a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
footer .social-widget a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background: #151515;
  transition: 0.5s;
  z-index: 2;
  border-radius: 50%;
}
footer .social-widget a.fb-icon {
  border-color: #1877f2;
}
footer .social-widget a.fb-icon:before {
  background: #1877f2;
}
footer .social-widget a.insta-icon {
  border-color: #761cc9;
}
footer .social-widget a.insta-icon:before {
  background: linear-gradient(-180deg, #fbcb2a 0%, #fc3282 50%, #761cc9 100%);
}
footer .social-widget a.whatsapp-icon {
  border-color: #41c451;
}
footer .social-widget a.whatsapp-icon:before {
  background: #41c451;
}
footer .social-widget a.yt-icon {
  border-color: #ff0001;
}
footer .social-widget a.yt-icon:before {
  background: #ff0001;
}
footer .social-widget a.tt-icon {
  border-color: #fff;
}
footer .social-widget a.tt-icon:before {
  background: #fff;
}
footer .social-widget a:hover img {
  transform: rotateY(360deg);
}
footer .social-widget a:hover img.normal {
  display: none;
}
footer .social-widget a:hover img.hover {
  display: inline-block;
}
footer .social-widget a:hover:before {
  top: 0;
}
footer .social-widget a:hover:after {
  top: 100%;
}
footer .footer-middle {
  border-top: 1px solid rgba(232, 220, 207, 0.13);
  border-bottom: 1px solid rgba(232, 220, 207, 0.13);
  padding: 10px 0;
}
footer .footer-middle .footer-widget {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
footer .footer-middle .footer-widget .icon {
  height: 42px;
  width: 42px;
  background: linear-gradient(-90deg, #29a758, #d1e868);
  border-radius: 50%;
  box-shadow: 0px 5px 30px rgba(88, 81, 35, 0.16);
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-right: 10px;
  flex: 0 0 auto;
}
footer .footer-middle .footer-widget .icon img.icon-img {
  max-width: 100%;
  width: auto;
}
footer .footer-middle .footer-widget .icon-2 {
  height: 24px;
  width: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 6px 40px rgba(88, 81, 35, 0.16);
  flex: 0 0 auto;
  margin-right: 5px;
  overflow: hidden;
}
footer .footer-middle .footer-widget .icon-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
footer .footer-middle .footer-widget h6 {
  font-size: 18px;
  font-weight: 600;
  color: #d1e868;
  margin-bottom: 2px;
}
footer .footer-middle .footer-widget h5 {
  font-size: 16px;
  color: #d1e868;
  margin-bottom: 2px;
}
footer .footer-middle .footer-widget a,
footer .footer-middle .footer-widget p {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.11px;
  display: block;
  margin: 0 0 6px;
}
footer .copyright {
  padding: 15px 0;
}
footer .copyright p {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin: 0;
}

.off-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}
.off-canvas-wrapper .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  cursor: url("../images/cancel.png"), auto;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.off-canvas-wrapper .off-canvas-inner-content {
  background: url(../images/Hero-Section-Banner.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 300px;
  padding: 20px;
  height: 100%;
  position: relative;
  transform: translateX(calc(-100% - 50px));
  transition: 0.4s;
}
.off-canvas-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.off-canvas-wrapper.open .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-inner {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
}
.off-canvas-wrapper .off-canvas-inner .logo {
  display: flex;
}
.off-canvas-wrapper .off-canvas-inner .logo img {
  max-width: 130px;
}
.off-canvas-wrapper .btn-close-off-canvas {
  width: 24px;
  height: 24px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.4s;
  font-weight: 100;
  z-index: 84;
  position: relative;
}
.off-canvas-wrapper .btn-close-off-canvas::before,
.off-canvas-wrapper .btn-close-off-canvas::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.off-canvas-wrapper .btn-close-off-canvas::before {
  transform: rotate(44deg);
}
.off-canvas-wrapper .btn-close-off-canvas::after {
  transform: rotate(-44deg);
}

.mobile-navigation {
  overflow: hidden;
  max-height: calc(100% - 50px);
  padding-top: 20px;
}

.mobile-navigation nav {
  height: 100%;
}

.mobile-header {
  padding: 10px 0;
}

.mobile-header-top {
  border-bottom: 1px solid #efefef;
}

.mobile-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-main-header .mobile-logo img {
  width: 100px;
}
.mobile-main-header .mobile-menu-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  height: 24px;
  width: 24px;
}
.mobile-header .btn {
  padding: 7px 12.5px;
}
.mobile-header .btn i {
  margin-right: 0;
}
.mobile-menu {
  height: 100%;
  overflow: auto;
  padding-right: 30px;
  margin-right: -30px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mobile-menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mobile-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4525);
}
.mobile-menu li a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 13px 0;
  text-decoration: none;
  transition: all 0.5s;
}
.mobile-menu li a:hover {
  color: #090909;
}
.mobile-menu li ul li {
  border: none;
}
.mobile-menu li ul li a {
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px 0 8px;
}
.mobile-menu li.menu-item-has-children {
  display: block;
  position: relative;
}
.mobile-menu li.menu-item-has-children .dropdown {
  padding-left: 15px;
}
.mobile-menu li.menu-item-has-children .menu-expand {
  line-height: 50;
  top: 1px;
  left: calc(100% - 40px);
  width: 40px;
  height: 40px;
  position: absolute;
  text-align: center;
  cursor: pointer;
  bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.mobile-menu li.menu-item-has-children .menu-expand i {
  display: block;
  position: relative;
  transition: all 250ms ease-out;
  color: #fff;
  font-size: 24px;
}
.mobile-menu li.menu-item-has-children .menu-expand i:before {
  content: "\f106";
}
.mobile-menu li.menu-item-has-children.active .menu-expand i {
  transform: rotate(180deg);
}
/* ----scroll to top css start ----*/
.scroll-top {
  bottom: 34px;
  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(-90deg, #29a758, #d1e868);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

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

.scroll-top.not-visible {
  bottom: -50px;
  visibility: hidden;
  opacity: 0;
}

.scroll-top:hover {
  box-shadow: 0px 5px 14px rgba(71, 3, 140, 0.4);
}

/* Scroll down */
.scroll-button {
  width: 140px;
  height: 140px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.0175em;
  word-spacing: 0em;
  text-decoration: none;
  border-radius: 50%;
  background-color: #090909;
  padding: 4px;
  margin-top: -70px;
  position: relative;
  z-index: 8;
}
.scroll-button img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.scroll-button .link__svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1em;
  stroke-linecap: round;
  stroke-linejoin: round;
  font-size: 1.3rem;
}
.scroll-button .link__text {
  animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}
/* Authentication */
.auth-wrapper {
  background: url(../images/Hero-Section-Banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 0;
  min-height: 100vh;
}
.auth-wrapper .auth-container {
  background-blend-mode: normal;
  box-shadow:
    inset 10px 10px 16px 0px rgba(255, 255, 255, 0.5),
    inset -10px -10px 16px 0px rgb(255 255 255 / 50%),
    5px 7px 16px 5px rgba(0, 6, 30, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 10px;
}
.auth-wrapper .auth-container .auth-image {
  border-radius: 30px;
  overflow: hidden;
  min-height: 200px;
  height: 100%;
}
.auth-wrapper .auth-container .auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.auth-wrapper .auth-container .auth-header {
  text-align: center;
  margin-bottom: 24px;
}
.auth-wrapper .auth-container .auth-header h3 {
  font-weight: bold;
  line-height: 50px;
  font-size: 30px;
  letter-spacing: -0.3px;
  color: #fff;
  margin-top: 24px;
}

.auth-wrapper .auth-container .text-right {
  text-align: right;
}
.auth-wrapper .auth-container .text-right p {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #fff;
  margin-bottom: 0;
}
.auth-wrapper .auth-container label {
  font-size: 14px;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
  font-weight: 400;
  display: block;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.auth-wrapper .auth-container select,
.auth-wrapper .auth-container input[type="text"],
.auth-wrapper .auth-container input[type="email"],
.auth-wrapper .auth-container input[type="password"] {
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 3px 0 5px;
  background: transparent;
  width: 100%;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.auth-wrapper .auth-container select option {
  color: #00061e;
}
.auth-wrapper .auth-container input::placeholder {
  color: #fff;
  opacity: 0.8;
}
.auth-wrapper .auth-container select:focus,
.auth-wrapper .auth-container input:focus {
  outline: 0;
  box-shadow: none;
}
.auth-wrapper .auth-container .form-group {
  margin-bottom: 22px;
  position: relative;
}
.auth-wrapper .auth-container .toggle-password {
  position: absolute;
  right: 10px;
  top: 1px;
  cursor: pointer;
  color: #fff;
  filter: invert();
}
.auth-wrapper .auth-container .btn-primary {
  width: 300px;
  justify-content: center;
}
.checkbox-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding-right: 0;
  padding-left: 28px;
  cursor: pointer;
  line-height: 1.5;
  user-select: none;
  position: relative;
}
.checkbox-wrapper input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
}
.checkbox-wrapper .checkmark {
  position: absolute;
  top: 50%;
  right: auto;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 0;
  transform: translateY(-50%);
}
.checkbox-wrapper .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-wrapper input:checked ~ .checkmark {
  background-color: transparent;
}

.checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-wrapper a {
  text-decoration: underline;
  text-underline-position: under;
  color: #fff;
}
.auth-container a.forget-password {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.auth-container a.forget-password:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.auth-container .iti {
  display: flex;
  gap: 5px;
}
.auth-container .iti__flag-container {
  position: relative;
  padding: 0;
}
.auth-container .iti .form-control {
  padding-left: 0 !important;
  border-radius: 0;
}
.auth-container .iti__selected-flag {
  border-bottom: 1px solid #fff;
}
.auth-container .iti__selected-dial-code {
  color: #fff;
}
.auth-container .iti__arrow {
  border-top-color: #fff;
}
@media (max-width: 1191px) {
  .btn {
    padding: 7px 20px;
  }
  .software-pricing .most-popular {
    font-size: 12px;
  }
  .desktop-nav ul li a {
    padding: 15px 8px;
  }
  .software-pricing .single-price {
    padding: 24px;
  }
}
/* Responsive */

@media (max-width: 767px) {
  .widgets .single-widget h2 {
    font-size: 76px;
  }
  .home-banner .banner-content h1,
  .hero-area-2 .gradient-text {
    font-size: 36px;
    line-height: 1.3;
  }
  .heading {
    font-size: 30px;
  }
  .home-banner .rectangle-56-complete h3 {
    font-size: 24px;
  }
  .software-pricing h3,
  .widgets .single-widget h6,
  .feature-box h6 {
    font-size: 20px;
  }
  .sharing-money .sharing-header p,
  .sharing-money .sharing-box .child p,
  .home-banner .banner-content p,
  footer .footer-middle .footer-widget h6 {
    font-size: 16px;
  }
  footer .footer-middle .footer-widget a,
  footer .footer-middle .footer-widget p,
  .metax-content ul li,
  .metax-content p,
  .software-pricing ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .widgets .single-widget p,
  .widgets .single-widget span,
  .feature-box p {
    font-size: 12px;
  }
  .home-banner .rectangle-56-complete p {
    font-size: 10px;
  }
  .metax-accordion .accordion-button {
    padding: 16px 20px;
    font-size: 16px;
  }
  .metax-accordion .accordion-body {
    padding: 10px 20px 20px;
    font-size: 12px;
  }
  footer .footer-middle {
    padding: 20px 0;
  }
  footer .footer-logo {
    margin-bottom: 24px;
  }
  footer .top-footer {
    gap: 24px;
  }
}
