@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin: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");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Libre+Franklin: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: "Instrument Sans" !important;
}

.container {
  max-width: 1600px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0px 16px;
}

/* Top Bar CSS */
.top-bar-section {
  background: #0059ff;
  padding: 11px 0px;
}

.top-bar-section .avatar-image {
  max-width: 52px;
  width: 100%;
}

/* Header CSS */
header .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

header .navbar {
  padding-bottom: 8px;
  padding-top: 8px;
}

header .navbar .header-logo {
  margin-right: 60px;
  padding: 0px;
}

header .navbar .header-logo img {
  width: 160px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("./assets/mobile-menu-icon.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  width: 40px;
  height: 40px;
}

header .header-logo span {
  font-weight: 600;
  font-size: 17.47px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1e1e1e !important;
}

header .main-menu li a {
  font-weight: 500;
  color: #1e1e1e !important;
  font-size: 14px !important;
}

header .main-menu li a:hover {
  color: #0059ff !important;
}

header .main-menu li a.active {
  color: #0059ff !important;
}

header .right-menu .avatar-download img:first-child {
  width: 65px;
}

header .right-menu .avatar-download span {
  font-size: 16px !important;
}

header .right-menu .download-btn button {
  padding: 6px !important;
}

header .right-menu .download-btn button img {
  width: 25px;
  height: 25px;
}

header .right-menu .download-btn {
  background: #0059ff;
  border-radius: 8px;
  cursor: pointer;
}

header .right-menu .download-btn span {
  font-weight: 500;
  font-size: 14px !important;
}

/* Hero Section CSS */
.hero-section {
  /* background-image: url('./assets/hero-bg.png'); */
  background: linear-gradient(108.92deg, #003eb3 0%, #4d8dff 98.8%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  object-fit: cover;
  /* padding-top: 60px; */
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section .main-hero {
  position: relative;
  z-index: 99;
}

.animation {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.animation img {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  opacity: 0;
  animation: toggleLoop 2s infinite;
}

.animation:first-child img {
  top: 60px;
  left: 165px;
}

.animation:nth-child(2) img {
  top: 420px;
  left: 165px;
}

.animation:nth-child(3) img {
  top: 240px;
  left: 365px;
}

.animation:nth-child(4) img {
  top: 600px;
  left: 365px;
}

.animation:nth-child(5) img {
  top: 780px;
  left: 165px;
}

.animation-2 .animation:first-child img {
  top: 60px;
  right: 165px;
  left: auto;
}

.animation-2 .animation:nth-child(2) img {
  top: 420px;
  left: auto;
  right: 165px;
}

.animation-2 .animation:nth-child(3) img {
  top: 240px;
  right: 365px;
  left: auto;
}

.animation-2 .animation:nth-child(4) img {
  top: 600px;
  left: auto;
  right: 365px;
}

.animation-2 .animation:nth-child(5) img {
  top: 780px;
  left: auto;
  right: 165px;
}

.animation img:nth-child(1) {
  animation-delay: 0s;
}

.animation img:nth-child(2) {
  animation-delay: 1s;
}

@keyframes toggleLoop {
  0% {
    opacity: 1;
  }

  49.99% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Grid Lines */
/* .grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    z-index: 0;
} */

/* Grid Icons */
.grid-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-auto-rows: 80px;
  pointer-events: none;
}

.grid-icons {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-auto-rows: 80px;
}

.grid-cell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-cell img {
  max-width: 60%;
  max-height: 60%;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

/* Animation */
.icon-box img {
  position: absolute;
  width: var(--grid-size);
  height: var(--grid-size);
  opacity: 0;
  animation: toggleLoop 2s infinite;
}

.icon-box img:nth-child(1) {
  animation-delay: 0s;
}

.icon-box img:nth-child(2) {
  animation-delay: 1s;
}

@keyframes toggleLoop {

  0%,
  49.99% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* Grid Size Variable (changes for responsive) */
:root {
  --grid-size: 80px;
}

@media (max-width: 992px) {
  :root {
    --grid-size: 60px;
  }
}

@media (max-width: 576px) {
  :root {
    --grid-size: 50px;
  }
}

.hero-section .main-hero h1 {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  font-size: 45px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-top: 60px;
}

.hero-section .main-hero p {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 20px;
  color: #e6f0ff;
}

.hero-section .main-hero .hero-btn .download-btn,
.hero-section .main-hero .hero-btn .feature-btn {
  cursor: pointer;
  border-radius: 8px;
}

.hero-section .main-hero .hero-btn {
  margin-bottom: 38px;
}

.hero-section .main-hero .hero-btn .feature-btn {
  padding: 11px 15px !important;
}

.hero-section .main-hero .hero-btn .download-btn span {
  font-weight: 500;
}

.hero-section .main-hero .hero-mobile-img img {
  max-width: 450px;
  width: 100%;
}

/* Finanace Section CSS */
.finance-section {
  padding: 80px 0px 52px;
  background: #f5f7fa;
}

.finance-section .main-finance h3 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.finance-section .main-finance .finance-text {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  color: #5c5c5c;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
  line-height: 24px;
}

.finance-section .main-finance .finanace-boxes .finance-box {
  border: 1px solid #e0e0e0;
  box-shadow: 0px 10px 24px 0px #00000014;
  border-radius: 20px;
  padding: 23px 24px 23.5px;
  text-align: center;
  width: calc(25% - 12px);
  margin-bottom: 28px;
  background-color: white;
}

.finance-section .main-finance .finanace-boxes .finance-box .finance-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.finance-section .main-finance .finanace-boxes .finance-box img {
  width: 60px;
  margin-bottom: 20px;
}

.finance-section .main-finance .finanace-boxes .finance-box h4 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.finance-section .main-finance .finanace-boxes .finance-box h4 br {
  display: none;
}

.finance-section .main-finance .finanace-boxes .finance-box p {
  color: #5c5c5c;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 0;
  flex: 1 1 auto;
}

/* Simple Step Section CSS */
.simple-step-section {
  padding: 80px 0px 80px;
  position: relative;
  margin-bottom: 440px;
}

.simple-step-section .main-simple-step .top-simple-step {
  background: linear-gradient(93.49deg,
      #003eb3 0%,
      #003eb3 19.99%,
      #4d8dff 100%);
  padding: 0 12px;
  padding-top: 60px;
  padding-bottom: 180px;
  border-radius: 16px;
  position: relative;
}

.simple-step-section .main-simple-step .top-simple-step::before {
  content: "";
  background-image: url("./assets/simple-step-bg1.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 280px;
  border-top-left-radius: 16px;
  background-size: cover;
}

.simple-step-section .main-simple-step .top-simple-step::after {
  content: "";
  background-image: url("./assets/simple-step-bg2.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 447px;
  height: 100%;
  border-bottom-right-radius: 16px;
}

.simple-step-section .main-simple-step .top-simple-step h3 {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.simple-step-section .main-simple-step .simple-slider-section {
  max-width: 1396px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
}

.simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item {
  background: #e7efff;
  border-radius: 24px;
}

.simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item {
  padding: 24px 18px 0px 18px;
  text-align: center;
}

.simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item h4 {
  font-weight: 600;
  font-size: 29px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 30px;
  color: #1e1e1e;
}

.simple-main-slider .owl-carousel.owl-drag .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item br.second {
  display: none;
}

.simple-step-section .main-simple-step .simple-slider-section .owl-theme .owl-nav.disabled+.owl-dots .owl-dot span {
  background: #6c39da14;
  width: 12px;
  height: 12px;
}

.simple-step-section .main-simple-step .simple-slider-section .owl-theme .owl-nav.disabled+.owl-dots .owl-dot.active span {
  background: #0059ff;
}

/* Money Manager Section CSS */
.money-manager-section {
  padding: 60px 0px 80px;
  overflow: hidden;
}

.money-manager-section .container {
  max-width: 1428px !important;
  width: 100%;
  padding: 0px 16px;
}

.money-manager-section .main-money-manager .top-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.money-manager-section .main-money-manager .top-part>div:first-child {
  width: calc(100% - 636px);
  max-width: 100%;
}

.money-manager-section .main-money-manager .top-part img {
  width: 570px;
  margin-left: auto;
  text-align: right;
}

.money-manager-section .main-money-manager .top-part img.mob {
  display: none;
}

.money-manager-section .main-money-manager .top-part h3 {
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #0c0020;
}

.money-manager-section .main-money-manager .top-part p {
  font-weight: 400;
  color: #5c5c5c;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  max-width: 430px;
}

.money-manager-section .main-money-manager .top-part .trusted-content {
  background: #e7efff;
  border-radius: 12px;
  padding: 16px 11px;
}

.money-manager-section .main-money-manager .top-part .trusted-content h4 {
  font-weight: 590;
  font-size: 19px;
  color: #1e1e1e;
}

.money-manager-section .main-money-manager .top-part .trusted-content p {
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
  margin-bottom: 0;
}

.money-manager-section .main-money-manager .botttom-part img {
  margin-bottom: 14px;
  width: 50px;
  height: 50px;
}

.money-manager-section .main-money-manager .botttom-part p {
  font-weight: 600;
  font-size: 16px;
  color: #0c0020;
  text-transform: capitalize;
}

/* Slider Section CSS */
.slider-section {
  padding: 100px 0px;
  background: #f5f7fa;
}

.slider-section .owl-carousel.owl-drag .owl-item {
  display: flex;
  justify-content: center;
}

.main-slider-section {
  overflow: hidden;
}

.slider-section .owl-stage-outer {
  overflow: visible;
}

.slider-section .owl-dots button {
  width: 12px;
  height: 12px;
  background: #6c39da14;
  border-radius: 100%;
  margin: 0 4px;
}

.slider-section .owl-dots {
  text-align: center;
  margin-top: 24px;
}

.slider-section .owl-dots button.active {
  background: #0059ff;
}

.slider-section .owl-nav {
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  transform: translateY(-50%);
}

.slider-section .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: #000 !important;
  margin: 0 10px;
  background-color: white !important;
  box-shadow: 0px 4px 40px 0px #9d9d9d;
}

.slider-section .owl-nav button:hover {
  background-color: white !important;
}

.slider-section .owl-nav button img {
  width: 25px;
  height: 25px;
}

.slider-section .owl-nav button.owl-prev img {
  transform: rotate(180deg);
}

/* Costumer Section CSS */
.costumer-section {
  padding: 80px 0px;
}

.costumer-section .main-costumer h3 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #1e1e1e;
}

.costumer-section .main-costumer p {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  color: #5c5c5c;
  text-align: center;
  margin-bottom: 60px;
}

.costumer-section .main-costumer .main-costumer-slider .owl-stage {
  display: flex;
}

.costumer-section .main-costumer .main-costumer-slider .owl-item {
  display: flex;
}

.costumer-section .main-costumer .main-costumer-slider .item {
  display: flex;
  height: 100%;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider {
  border: 1px solid #e0e0e0;
  padding: 32px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider p:nth-child(2) {
  flex: 1 1 auto;
}

/* .costumer-section .main-costumer .main-costumer-slider .owl-item {
    margin-bottom: 140px;
    margin-top: 96px;
} */

/* .costumer-section .main-costumer .main-costumer-slider .owl-item.active.highlight .item {
    position: relative;
}

.costumer-section .main-costumer .main-costumer-slider .owl-item.active.highlight .item::after {
    content: '';
    position: absolute;
    right: 24px;
    top: -40px;
    background-image: url('/assets/quote-down.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 70px;
    height: 70px;
}

.costumer-section .main-costumer .main-costumer-slider .owl-item.active:nth-child(2) .item .slider {
    box-shadow: 0px 4px 40px 0px #0F274D1A;
    border: none;
} */

.costumer-section .main-costumer .main-costumer-slider .item .slider img {
  width: 60px;
  height: 60px;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #5c5c5c;
  text-align: left;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider hr {
  background-color: #dfe4ec;
  opacity: 1;
  margin-top: auto;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #0059ff;
  cursor: pointer;
  width: fit-content;
}

.costumer-section .main-costumer .main-costumer-slider .item .slider .qualification {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #697788;
}

.costumer-section .main-costumer .main-costumer-slider .owl-dots {
  text-align: center;
  margin-top: 24px;
}

.costumer-section .main-costumer .main-costumer-slider .owl-dots button {
  width: 12px;
  height: 12px;
  background: #6c39da14;
  border-radius: 100%;
  margin: 0 4px;
}

.costumer-section .main-costumer .main-costumer-slider .owl-dots button.active {
  background: #0059ff;
}

.costumer-section .main-costumer .main-costumer-slider .owl-dots button span {
  width: 12px;
  height: 12px;
}

/* Control Money Section */
.control-money-section {
  padding: 80px 0px;
}

.control-money-section .main-control-money {
  position: relative;
  /* padding-top: 34px; */
  padding-left: 60px;
  padding-right: 130px;
  background: #1e1e1e;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.control-money-section .main-control-money::after {
  content: "";
  background-image: url("assets/control-money-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 539px;
  height: 468px;
  border-radius: 30px;
}

.control-money-section .main-control-money .left-section .money-img {
  margin-bottom: 20px;
  width: 60px;
}

.control-money-section .main-control-money .left-section h3 {
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.control-money-section .main-control-money .left-section p {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #e6f0ff;
  margin-bottom: 23px;
}

.control-money-section .main-control-money .right-section {
  position: relative;
  z-index: 9;
  padding-top: 40px;
}

.control-money-section .main-control-money .right-section .mob,
.control-money-section .main-control-money .left-section .payment-section a img.mob {
  display: none;
  margin: 0 auto;
}

.control-money-section .main-control-money .right-section img {
  max-width: 430px;
  width: 100%;
}

.control-money-section .main-control-money .left-section .payment-section {
  position: relative;
  z-index: 9;
}

.control-money-section .main-control-money .left-section .payment-section a:first-child img {
  max-width: 180px;
  width: 100%;
}

.control-money-section .main-control-money .left-section .payment-section a:last-child img {
  max-width: 156px;
  width: 100%;
}

/* Accordian Section CSS */
.accordian-section {
  padding: 80px 0px 50px;
}

.accordian-section .main-accordian {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.accordian-section .main-accordian .left-section {
  max-width: 43%;
  width: 100%;
}

.accordian-section .main-accordian .left-section img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.accordian-section .main-accordian .right-section {
  max-width: 55%;
  width: 100%;
}

.accordian-section .main-accordian .right-section h3 {
  font-weight: 600;
  font-size: 38px;
  text-transform: capitalize;
  color: #18271a;
}

.accordian-section .main-accordian .right-section p {
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
  max-width: 600px;
  width: 100%;
  margin-bottom: 40px;
}

.accordian-section .main-accordian .right-section .accordion {
  min-height: 420px;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-button,
.accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-button:not(.collapsed),
.accordian-section .main-accordian .right-section .accordion .accordion-item {
  border: none;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item {
  padding: 22px 30px 25px 30px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease 0.4s,
    padding 0.4s ease 0.4s, margin-top 0.4s ease 0.4s,
    border-radius 0.4s ease 0.4s;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 5px;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item.active {
  box-shadow: 5px 9px 33px 0px #0f274d17;
  border-radius: 30px;
  border-bottom: none;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-collapse {
  margin-top: 16px;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item h2 button {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #1e212e;
  text-align: left;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-body {
  padding: 0;
  font-weight: 400;
  font-size: 13px;
  color: #5c5c5c;
}

.accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-button {
  padding: 0;
}

.accordian-section .main-accordian .right-section .accordion .accordion-button.collapsed::after {
  background-image: url("assets/add.svg");
  width: 32px;
  height: 32px;
  background-size: cover;
}

.accordian-section .main-accordian .right-section .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("assets/minus.svg");
  width: 32px;
  height: 32px;
  background-size: cover;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  max-height: 500px;
  /* Larger than expected content */
}


/* Footer CSS */
footer {
  padding: 40px 0px 20px;
}

footer .container {
  max-width: 100% !important;
  padding: 0px 20px;
}

footer .main-footer {
  background: linear-gradient(101.34deg, #003eb3 0%, #4d8dff 99.66%);
  border-radius: 24px;
  padding: 80px 80px 50px;
}

footer .main-footer .top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 5px;
}

footer .main-footer .top-section .head-part h3 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0;
  text-transform: capitalize;
}

footer .main-footer .top-section .head-part p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0;
}

footer .main-footer .top-section .email-part form {
  background: #ffffff;
  padding: 9px 12px;
  border-radius: 12px;
  position: relative;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .main-footer .top-section .email-part form input {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  padding-left: 38px;
  text-overflow: ellipsis;
  width: calc(100% - 122px);
}

footer .main-footer .top-section .email-part form::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("assets/sms.svg");
  background-repeat: no-repeat;
}

footer .main-footer .top-section .email-part form input::placeholder {
  color: #252525b2;
  text-transform: capitalize;
  font-size: 12px;
}

footer .main-footer .top-section .email-part form button {
  background: #0059ff;
  border: none;
  outline: none;
  box-shadow: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: white;
  padding: 7px 0px;
  border-radius: 8px;
  max-width: 96px;
  width: 100%;
}

footer .main-footer .middle-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

footer .main-footer .middle-section .left-part {
  display: flex;
  justify-content: space-between;
}

footer .main-footer .middle-section .left-part ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

footer .main-footer .middle-section .left-part h4 {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04px;
  text-transform: capitalize;
  margin-bottom: 22px;
}

footer .main-footer .middle-section .left-part .social ul li {
  position: relative;
}

footer .main-footer .middle-section .left-part .social ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("assets/facebook.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}

footer .main-footer .middle-section .left-part .social ul li:nth-child(2)::after {
  background-image: url("assets/instagram.png");
}

footer .main-footer .middle-section .left-part .social ul li:nth-child(3)::after {
  background-image: url("assets/you-tube.png");
}

footer .main-footer .middle-section .left-part .social ul li a {
  padding-left: 28px;
}

footer .main-footer .middle-section .left-part ul li a {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #e6f0ff;
  text-decoration: none;
  text-wrap: nowrap;
}

footer .main-footer .middle-section .left-part .accordion {
  display: flex;
}

footer .main-footer .middle-section .left-part .accordion .accordion-button {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

footer .main-footer .middle-section .left-part .accordion .accordion-item {
  background-color: transparent;
  border: none;
}

footer .main-footer .middle-section .left-part .accordion.social {
  max-width: 120px;
  width: 100%;
}

footer .main-footer .middle-section .left-part .accordion.links {
  max-width: 115px;
  width: 100%;
}

footer .main-footer .middle-section .left-part .accordion .accordion-item:not(:last-child) {
  margin-right: 192px;
}

footer .main-footer .middle-section .left-part .accordion.support {
  max-width: 155px;
  width: 100%;
}

footer .main-footer .middle-section .left-part .accordion .accordion-body {
  padding: 0px;
}

footer .main-footer .middle-section .left-part .accordion .accordion-button::after {
  display: none;
}

footer .main-footer .middle-section .right-part img {
  display: block;
}

footer .main-footer .middle-section .right-part a:first-child img {
  margin-bottom: 10px;
}

footer .main-footer .middle-section .right-part a img {
  max-width: 220px;
}

footer .main-footer .bottom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .main-footer .bottom-section p {
  color: #e6f0ff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04px;
  margin: 0;
  text-transform: capitalize;
}

footer .main-footer .bottom-section ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin: 0;
}

footer .main-footer .bottom-section ul li:not(:last-child) {
  margin-right: 30px;
}

footer .main-footer .bottom-section ul li a {
  color: #e6f0ff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  text-decoration: none;
}

footer .main-footer .bottom-section .footer-logo a img {
  width: 240px;
}

footer .main-footer .bottom-section .footer-logo a img.mob {
  display: none;
}

/* Terms & Condition CSS */
body.terms-conditions {
  color: #333;
  background-color: #f9fafb;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

.terms-conditions .container-fluid {
  max-width: 1600px;
  margin: auto;
  padding: 40px 50px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.terms-conditions h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  color: #1a202c;
  margin-bottom: 24px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.terms-conditions h1 a {
  margin-right: 10px;
  display: block;
}

.terms-conditions h1 img {
  width: 100%;
  height: 100%;
  display: block;
}

.terms-conditions h2 {
  font-size: 18px;
  color: #2d3748;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 8px;
  border-left: 4px solid #4a90e2;
}

.terms-conditions p,
.terms-conditions li {
  font-size: 16px;
  margin-bottom: 36px;
}

.terms-conditions br {
  display: block;
  margin-bottom: 8px;
}

.terms-conditions ul {
  padding-left: 20px;
}

.terms-conditions a {
  color: #4a90e2;
  text-decoration: none;
}

.terms-conditions a:hover {
  text-decoration: underline;
}

@media (max-width: 1600px) {

  /* Hero Section CSS */
  .animation:first-child img,
  .animation:nth-child(2) img,
  .animation:nth-child(5) img {
    left: 130px;
  }

  .animation:nth-child(3) img,
  .animation:nth-child(4) img {
    left: 330px;
  }

  .animation-2 .animation:first-child img,
  .animation-2 .animation:nth-child(2) img,
  .animation-2 .animation:nth-child(5) img {
    right: 130px;
  }

  .animation-2 .animation:nth-child(3) img,
  .animation-2 .animation:nth-child(4) img {
    right: 330px;
  }

  /* Money Manager CSS */
  .container {
    max-width: 1350px !important;
  }

  .money-manager-section .container {
    max-width: 1132px !important;
  }

  /* Simple Section CSS */
  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 1100px;
  }

  /* Customers Section CSS */
  .costumer-section .main-costumer .main-costumer-slider .item .slider {
    padding: 22px 16px;
  }

  .costumer-section .main-costumer .main-costumer-slider .item .slider img {
    width: 50px;
    height: 50px;
  }

  .costumer-section .main-costumer .main-costumer-slider .item .slider p {
    font-size: 15px;
    line-height: 24px;
  }

  .costumer-section .main-costumer .main-costumer-slider .item .slider .qualification {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 1440px) {

  /* Hero CSS */
  .animation:first-child img,
  .animation:nth-child(2) img,
  .animation:nth-child(5) img {
    left: 90px;
  }

  .animation:nth-child(3) img,
  .animation:nth-child(4) img {
    left: 290px;
  }

  .animation-2 .animation:first-child img,
  .animation-2 .animation:nth-child(2) img,
  .animation-2 .animation:nth-child(5) img {
    right: 90px;
  }

  .animation-2 .animation:nth-child(3) img,
  .animation-2 .animation:nth-child(4) img {
    right: 290px;
  }

  /* Finanace Section CSS */
  .finance-section .main-finance .finance-text {
    max-width: 630px;
    font-size: 16px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box img {
    width: 70px;
    margin-bottom: 20px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box {
    padding: 30px 20px 23.5px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box h4 {
    font-size: 20px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box p {
    font-size: 14px;
  }

  /* Simple Step Section CSS */
  .simple-step-section {
    margin-bottom: 350px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 1090px;
  }

  .simple-step-section .main-simple-step .top-simple-step {
    padding-top: 60px;
    padding-bottom: 200px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item {
    max-width: 500px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* Money Manager CSS */
  .container,
  .money-manager-section .container {
    max-width: 1320px !important;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content {
    width: 592px;
  }

  .money-manager-section .main-money-manager .botttom-part p {
    font-size: 18px;
  }

  /* Control Money CSS */
  .control-money-section .main-control-money {
    padding-right: 128px;
  }

  .control-money-section .main-control-money .left-section .money-img {
    width: 60px;
    height: 60px;
  }

  .control-money-section .main-control-money .right-section {
    padding-top: 20px;
  }

  .control-money-section .main-control-money .right-section img {
    max-width: 440px;
  }

  .control-money-section .main-control-money::after {
    width: 523px;
    height: 454px;
  }

  /* Accordion Section CSS */
  .accordian-section .main-accordian .left-section {
    width: 40%;
  }

  .accordian-section .main-accordian .right-section .accordion {
    min-height: 440px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item {
    padding: 22px 22px 25px 22px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-body {
    font-size: 16px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item h2 {
    margin-bottom: 12px;
  }

  /* Footer CSS */
  footer .main-footer {
    padding: 40px 80px 50px;
  }

  footer .main-footer .top-section .email-part form {
    max-width: 460px;
    padding: 6px 12px;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-item:not(:last-child) {
    margin-right: 120px;
  }

  footer .main-footer .bottom-section {
    text-align: center;
  }

  footer .main-footer .bottom-section .footer-logo img {
    max-width: 195px;
    width: 100%;
  }

  footer .main-footer .bottom-section ul {
    justify-content: center;
  }

  footer .main-footer .bottom-section p {
    font-size: 15px;
  }

  footer .main-footer .bottom-section ul li a {
    font-size: 15px;
  }
}

@media (max-width: 1320px) {

  .container,
  .money-manager-section .container {
    max-width: 1140px !important;
  }

  /* Header CSS */
  header .navbar .header-logo {
    margin-right: 20px;
  }

  header .header-logo img {
    width: 40px;
  }

  header .header-logo span {
    font-size: 16px;
  }

  header .right-menu .avatar-download span {
    font-size: 16px !important;
  }

  header .navbar-nav li {
    margin-right: 16px !important;
  }

  header .right-menu .avatar-download {
    margin-right: 6px !important;
  }

  header .right-menu .avatar-download img:first-child {
    max-width: 60px;
    width: 100%;
  }

  /* Hero Section CSS */
  .animation img {
    width: 70px;
    height: 70px;
  }

  .animation:nth-child(3) img {
    top: 240px;
    left: 295px;
  }

  .animation:nth-child(4) img {
    top: 600px;
    left: 295px;
  }

  .animation-2 .animation:nth-child(3) img {
    top: 240px;
    right: 295px;
    left: auto;
  }

  .animation-2 .animation:nth-child(4) img {
    top: 600px;
    left: auto;
    right: 295px;
  }

  /* Simple Step Section CSS */
  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 1140px;
  }

  /* Money Manager CSS */
  .money-manager-section .main-money-manager .top-part>div:first-child {
    width: calc(100% - 620px);
  }

  .money-manager-section .main-money-manager .top-part img {
    width: 530px;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content {
    width: 100%;
  }

  /* Accorian Section CSS */
  .accordian-section .main-accordian .right-section .accordion {
    min-height: 485px;
  }
}

@media (max-width: 1280px) {

  /* Header CSS */
  header .header-logo {
    margin-right: 10px !important;
  }

  header .main-menu li a {
    font-size: 14px !important;
  }

  header .right-menu .avatar-download span {
    font-size: 17px !important;
  }

  /* Control Money Section CSS */
  .control-money-section .main-control-money {
    display: block;
    padding-top: 34px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .control-money-section .main-control-money .left-section {
    margin-bottom: 33px;
  }

  .control-money-section .main-control-money .right-section {
    text-align: center;
  }

  /* Footer CSS */
  footer .main-footer .middle-section .left-part .accordion .accordion-item:not(:last-child) {
    margin-right: 80px;
  }

  footer .main-footer .middle-section .right-part img {
    max-width: 230px;
    width: 100%;
  }

  footer .main-footer .top-section .head-part h3 {
    font-size: 38px;
  }

  footer .main-footer .top-section .email-part form {
    max-width: 375px;
  }
}

@media (max-width: 1199px) {

  /* Header CSS */
  header .right-menu .download-btn {
    width: fit-content;
    margin-top: 15px;
  }

  /* Hero Section CSS */
  .hero-section .main-hero h1 {
    font-size: 40px;
  }

  .animation img {
    width: 70px;
    height: 70px;
  }

  .hero-section .main-hero p {
    font-size: 16px;
    max-width: 600px;
  }

  .animation:first-child img,
  .animation:nth-child(2) img,
  .animation:nth-child(5) img {
    left: 90px;
  }

  .animation:nth-child(3) img,
  .animation:nth-child(4) img {
    left: 220px;
  }

  .animation-2 .animation:first-child img,
  .animation-2 .animation:nth-child(2) img,
  .animation-2 .animation:nth-child(5) img {
    right: 90px;
  }

  .animation-2 .animation:nth-child(3) img {
    right: 220px;
    left: auto;
  }

  .animation-2 .animation:nth-child(4) img {
    right: 220px;
  }

  /* Finanace Section CSS */
  .finance-section {
    padding: 60px 0px;
  }

  .finance-section .main-finance h3 {
    font-size: 32px;
    max-width: 100%;
  }

  .finance-section .main-finance .finance-text {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box {
    width: calc(50% - 8px);
    padding: 20px 12px;
  }

  /* Money Manager CSS */
  .container,
  .money-manager-section .container {
    max-width: 980px !important;
  }

  .money-manager-section .main-money-manager .top-part>div:first-child {
    width: calc(100% - 580px);
  }

  .money-manager-section .main-money-manager .top-part img {
    width: 460px;
  }

  /* Accordian Section CSS */
  .accordian-section .main-accordian {
    gap: 30px;
  }

  /* Simple Step CSS */
  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 940px;
  }

  /* Footer CSS */

  footer .main-footer .bottom-section {
    display: block;
  }

  footer .main-footer .bottom-section .footer-logo,
  footer .main-footer .bottom-section p {
    margin-bottom: 12px;
  }
}

@media (max-width: 1024px) {

  /* Hero CSS */
  .animation:first-child img,
  .animation:nth-child(2) img,
  .animation:nth-child(5) img {
    left: 30px;
  }

  .animation:nth-child(3) img,
  .animation:nth-child(4) img {
    left: 180px;
  }

  .animation-2 .animation:first-child img,
  .animation-2 .animation:nth-child(2) img,
  .animation-2 .animation:nth-child(5) img {
    right: 30px;
  }

  .animation-2 .animation:nth-child(3) img,
  .animation-2 .animation:nth-child(4) img {
    right: 180px;
  }

  /* Simple Step Section CSS */
  .simple-step-section {
    padding: 60px 0px 100px;
    margin-bottom: 420px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    top: 300px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 940px;
  }

  /* Money Manager CSS */
  .money-manager-section {
    padding: 14px 0px 60px;
  }

  /* Slider Section CSS */
  .slider-section {
    padding: 60px 0px;
  }

  /* Costumer Section CSS */
  .costumer-section {
    padding: 60px 0px;
  }

  /* Money Control Section CSS */
  .control-money-section {
    padding: 60px 0px;
  }

  /* Accordian Section CSS */
  .accordian-section {
    padding: 60px 0px;
  }

  .accordian-section .main-accordian {
    gap: 24px;
  }
}

@media (max-width: 991px) {

  .container,
  .money-manager-section .container {
    max-width: 750px !important;
  }

  /* Hero Section CSS */
  .hero-section {
    background-image: none;
    background: linear-gradient(108.92deg, #003eb3 0%, #4d8dff 98.8%);
  }

  .hero-section .main-hero h1 {
    max-width: 100%;
  }

  .hero-section .animation-images {
    display: none;
  }

  .grid-lines,
  .grid-icons {
    display: none;
  }

  /* Simple Step CSS */
  .simple-step-section {
    margin-bottom: 425px;
  }

  .simple-step-section .main-simple-step .top-simple-step::before {
    background-image: url("./assets/simple-bg-mob-1.svg");
    width: 230px;
    height: 200px;
  }

  .simple-step-section .main-simple-step .top-simple-step::after {
    background-image: url("./assets/simple-bg-mob-2.png");
    bottom: 0px;
    right: 0;
    width: 148px;
    height: 168px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 940px;
  }

  /* Money Manager CSS */
  .money-manager-section {
    padding: 60px 0px;
  }

  .money-manager-section .main-money-manager .top-part {
    display: block;
  }

  .money-manager-section .main-money-manager .top-part>div:first-child {
    width: 100%;
    padding-bottom: 40px;
  }

  .money-manager-section .main-money-manager .top-part>div:last-child {
    margin-bottom: 6px;
  }

  .money-manager-section .main-money-manager .top-part img {
    margin-right: 0;
    width: 100%;
  }

  .money-manager-section .main-money-manager .top-part img.desk {
    display: none;
  }

  .money-manager-section .main-money-manager .top-part img.mob {
    display: block;
    width: 429px;
    margin: 0 auto;
  }

  .money-manager-section .main-money-manager .top-part h3 {
    font-size: 32px;
    text-align: center;
  }

  .money-manager-section .main-money-manager .top-part p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content h4 {
    font-size: 20px;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 0;
    margin: 0;
  }

  .money-manager-section .main-money-manager .botttom-part img {
    width: 42px;
    height: 42px;
    margin-bottom: 3px;
  }

  .money-manager-section .main-money-manager .botttom-part p {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 14px;
  }

  /* Slider Section CSS */
  .slider-section {
    padding: 60px 0px;
  }

  /* Costumer Section CSS */
  .costumer-section {
    padding: 60px 0px 54px;
  }

  .costumer-section .main-costumer h3 {
    font-size: 30px;
  }

  .costumer-section .main-costumer p {
    font-size: 16px;
    margin-bottom: 23px;
    line-height: normal;
  }

  .costumer-section .main-costumer .main-costumer-slider .owl-dots {
    margin-top: 16px;
  }

  .costumer-section .main-costumer .main-costumer-slider .item .slider {
    padding: 20px 12px;
  }

  .costumer-section .main-costumer .main-costumer-slider .item .slider img {
    width: 42px;
    height: 42px;
  }

  /* Control Money Section CSS */
  .control-money-section {
    padding: 60px 0px;
  }

  /* Accordian Section CSS */
  .accordian-section {
    padding: 60px 0px 30px;
  }

  .accordian-section .main-accordian .left-section {
    display: none;
  }

  .accordian-section .main-accordian .right-section {
    max-width: 100%;
  }

  .accordian-section .main-accordian .right-section h3 {
    font-size: 32px;
    text-align: center;
  }

  .accordian-section .main-accordian .right-section p {
    font-size: 14px;
    text-align: center;
    line-height: normal;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item h2 button {
    font-size: 16px;
  }

  /* Footer CSS */
  footer .main-footer {
    padding: 40px 24px 24px;
  }

  footer .main-footer .top-section {
    display: block;
    margin-bottom: 24px;
  }

  footer .main-footer .top-section .head-part h3 {
    font-size: 24px;
    margin-bottom: 12px !important;
  }

  footer .main-footer .top-section .head-part p {
    font-size: 15px;
    margin-bottom: 21px;
  }

  footer .main-footer .top-section .email-part form {
    max-width: 100%;
    width: 100%;
  }

  footer .main-footer .middle-section {
    display: block;
    margin-bottom: 24px;
  }

  footer .main-footer .middle-section .left-part {
    display: block;
  }

  footer .main-footer .middle-section .left-part h4 {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  footer .main-footer .middle-section .left-part .accordion {
    display: flex;
    flex-direction: column;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-item {
    margin-bottom: 0px;
  }

  footer .main-footer .middle-section .left-part .accordion.social,
  footer .main-footer .middle-section .left-part .accordion.links,
  footer .main-footer .middle-section .left-part .accordion.support {
    max-width: 100%;
    margin-bottom: 24px;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-header {
    border-bottom: 1px solid #e0e0e0;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-body {
    padding-top: 16px;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-button::after {
    display: block;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-button::after {
    background-image: url("assets/add-white.svg");
    width: 21px;
    height: 21px;
    background-size: cover;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-button:not(.collapsed)::after {
    background-image: url("assets/minus-white.svg");
    width: 21px;
    height: 21px;
    background-size: cover;
  }

  footer .main-footer .middle-section .right-part {
    margin-top: 24px;
  }

  footer .main-footer .middle-section .right-part img {
    max-width: 180px;
  }

  footer .main-footer .middle-section .right-part {
    display: flex;
    justify-content: center;
  }

  footer .main-footer .middle-section .right-part a {
    margin-right: 10px;
  }

  footer .main-footer .middle-section .right-part a:first-child img {
    margin-bottom: 0;
  }

  footer .main-footer .bottom-section .footer-logo {
    margin-bottom: 0;
  }

  footer .main-footer .bottom-section .footer-logo a img {
    max-width: 190px;
  }

  footer .main-footer .bottom-section p {
    font-size: 14px;
    margin-top: 10px;
  }

  footer .main-footer .bottom-section ul li a {
    font-size: 12px;
  }

  footer .main-footer .bottom-section ul li:not(:last-child) {
    margin-right: 28px;
  }
}

@media (max-width: 767px) {

  .container,
  .money-manager-section .container {
    max-width: 720px !important;
    padding: 0px 12px;
  }

  /* Header CSS */
  header .navbar {
    padding: 9px 0px;
  }

  header .navbar .header-logo {
    padding: 3px 0px;
  }

  header .navbar .navbar-toggler {
    padding: 0;
  }

  /* Hero Section CSS */

  .hero-section .main-hero h1 {
    padding-top: 40px;
    font-size: 32px;
  }

  .hero-section .main-hero p {
    font-size: 16px;
    margin-bottom: 22px !important;
  }

  .hero-section .main-hero .hero-btn {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 31px;
  }

  .hero-section .main-hero .hero-btn .feature-btn {
    padding: 11px !important;
    display: block;
  }

  .hero-section .main-hero .hero-btn .download-btn {
    margin-right: 10px !important;
    padding-left: 16px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 202px;
    width: 100%;
  }

  .hero-section .main-hero .hero-btn .download-btn span {
    font-size: 14px;
  }

  .hero-section .main-hero .hero-btn .download-btn button {
    box-shadow: none;
    padding: 7px 7px 7px 6px !important;
  }

  .hero-section .main-hero .hero-btn .download-btn .btn:focus {
    box-shadow: none !important;
  }

  .hero-section .main-hero .hero-btn .download-btn button img {
    width: 30px;
  }

  .hero-section .main-hero .hero-mobile-img img {
    max-width: 330px;
  }

  /* Finanace Section CSS */
  .finance-section {
    padding: 50px 0px 43px;
  }

  .finance-section .main-finance h3 {
    font-size: 30px;
    line-height: normal;
    margin-bottom: 15px;
  }

  .finance-section .main-finance .finance-text {
    line-height: 18px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box {
    width: calc(50% - 4px);
    margin-bottom: 16px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box .finance-img img {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box h4 {
    font-size: 16px;
  }

  .finance-section .main-finance .finanace-boxes .finance-box h4 br {
    display: block;
  }

  .finance-section .main-finance .finanace-boxes .finance-box p {
    font-size: 10px;
    line-height: 12px;
  }

  /* Simple Step Section CSS */
  .simple-step-section {
    padding: 50px 0px 140px;
    margin-bottom: 211px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    max-width: 361px;
  }

  .simple-step-section .main-simple-step .top-simple-step h3 {
    font-size: 32px;
    max-width: 350px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item {
    max-width: 361px;
    padding: 24px 20px 0px 24px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item br.second {
    display: block;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item br.first {
    display: none;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item h4 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .simple-step-section .main-simple-step .top-simple-step {
    padding-top: 60px;
    padding-bottom: 279px;
  }

  .simple-step-section .main-simple-step .simple-slider-section {
    top: 236px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 33px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .owl-theme .owl-nav.disabled+.owl-dots .owl-dot span {
    margin: 5px 4px;
  }

  /* Money Manager CSS */
  .money-manager-section {
    padding: 50px 0px 45px;
  }

  .money-manager-section .container {
    padding: 0px 12px !important;
  }

  .money-manager-section .main-money-manager .top-part h3 {
    margin-bottom: 10px !important;
  }

  .money-manager-section .main-money-manager .top-part p {
    line-height: normal;
    margin-bottom: 19px !important;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content {
    padding: 20px 13px 20px;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content h4 {
    margin-bottom: 12px !important;
  }

  .money-manager-section .main-money-manager .top-part .trusted-content p {
    margin-bottom: 0 !important;
    line-height: 22px;
  }

  /* Slider Section CSS */
  .slider-section {
    padding: 50px 0px 50px;
  }

  .slider-section .owl-dots {
    margin-top: 18px;
  }

  .owl-carousel .owl-item img {
    max-width: 310px;
  }

  /* Costumer Section CSS */
  .costumer-section {
    padding: 50px 0px 50px;
  }

  /* Control Money Section CSS */
  .control-money-section {
    padding: 0;
  }

  .control-money-section .main-control-money {
    padding: 39px 18px 0px;
    border-radius: 16px;
  }

  .control-money-section .main-control-money::after {
    background-image: url("assets/control-money-mob-bg.png");
    width: 406px;
    height: 278px;
    border-radius: 16px;
  }

  .control-money-section .main-control-money .left-section {
    text-align: center;
  }

  .control-money-section .main-control-money .left-section .money-img {
    width: 60px;
    height: 60px;
  }

  .control-money-section .main-control-money .left-section h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .control-money-section .main-control-money .left-section p {
    font-size: 16px;
  }

  .control-money-section .main-control-money .left-section .payment-section a {
    width: fit-content;
    display: block;
    margin: 0 auto;
  }

  .control-money-section .main-control-money .left-section .payment-section a:last-child img {
    max-width: 180px;
  }

  .control-money-section .main-control-money .right-section {
    padding-top: 0;
  }

  .control-money-section .main-control-money .right-section .mob,
  .control-money-section .main-control-money .left-section .payment-section a img.mob {
    display: block;
  }

  .control-money-section .main-control-money .right-section .desk,
  .control-money-section .main-control-money .left-section .payment-section a img.desk {
    display: none;
  }

  .control-money-section .main-control-money .left-section .payment-section a:first-child img {
    margin-bottom: 8px;
  }

  /* Accordian Section CSS */
  .accordian-section {
    padding: 50px 0px 0px;
  }

  .accordian-section .main-accordian .right-section h3 {
    margin-bottom: 2px !important;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item.active,
  .accordian-section .main-accordian .right-section .accordion .accordion-item {
    /* padding: 12px 12px 28px 12px; */
    padding: 28px 12px 19px 12px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item.active h2 {
    margin-bottom: 16px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item .accordion-body {
    padding-right: 50px;
    line-height: 169%;
    font-size: 14px;
  }

  .accordian-section .main-accordian .right-section .accordion .accordion-item:not(.active) {
    padding: 28px 12px 19px 12px;
  }

  /* Footer CSS */
  footer {
    padding: 50px 0px 0px;
  }

  footer .container {
    padding: 0px 12px;
  }

  footer .main-footer {
    padding: 30px 24px 30px;
  }

  footer .main-footer .top-section {
    margin-bottom: 25px;
  }

  footer .main-footer .top-section .head-part p {
    margin-bottom: 20px;
  }

  footer .main-footer .middle-section {
    margin-bottom: 22px;
  }

  footer .main-footer .middle-section .left-part h4 {
    padding-bottom: 10px;
  }

  footer .main-footer .middle-section .left-part .social ul li::after {
    width: 16px;
    height: 16px;
  }

  footer .main-footer .middle-section .left-part .accordion .accordion-body {
    padding-top: 10px;
  }

  footer .main-footer .middle-section .left-part ul li a {
    font-size: 14px;
  }

  footer .main-footer .middle-section .left-part .social ul li a {
    padding-left: 20px;
  }

  footer .main-footer .middle-section .left-part .accordion.social {
    margin-bottom: 22px;
  }

  footer .main-footer .middle-section .left-part .accordion.links {
    margin-bottom: 25px;
  }

  footer .main-footer .middle-section .right-part img {
    width: 180px;
  }

  footer .main-footer .bottom-section .footer-logo a img.desk {
    display: none;
  }

  footer .main-footer .bottom-section .footer-logo a img.mob {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {

  .container,
  .money-manager-section .container {
    max-width: 100% !important;
  }

  /* Simple Step CSS */
  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item h4 {
    font-size: 20px;
  }

  /* Money Manager CSS */
  .money-manager-section .main-money-manager .top-part img.mob {
    display: block;
    width: 100%;
  }
}

@media (max-width: 429px) {

  /* Hero Section CSS */
  .hero-section .main-hero h1 {
    font-size: 30px;
  }

  .hero-section .main-hero p {
    font-size: 14px;
  }

  .hero-section .main-hero .hero-btn {
    display: block !important;
  }

  .hero-section .main-hero .hero-btn .download-btn {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-section .main-hero .hero-mobile-img img {
    width: 100%;
  }

  /* Finances Section CSS */
  .finance-section .main-finance h3 {
    font-size: 28px;
  }

  .finance-section .main-finance .finance-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* Money Manager CSS */
  .money-manager-section .main-money-manager .top-part p {
    font-size: 14px;
  }

  /* Simple Step Section CSS */
  .simple-step-section {
    margin-bottom: 150px;
  }

  .simple-step-section .main-simple-step .simple-slider-section .simple-main-slider .item {
    max-width: 315px;
  }

  /* Customer Section CSS */
  .costumer-section .main-costumer h3 {
    font-size: 28px;
  }

  /* Money Manager Section CSS */
  .money-manager-section .main-money-manager .top-part img.mob {
    width: 100%;
  }

  .control-money-section .main-control-money .right-section img {
    width: 100%;
  }

  .control-money-section .main-control-money::after {
    width: 100%;
    height: 245px;
  }

  /* Footer CSS */
  footer .main-footer {
    padding: 30px 16px 30px;
  }

  footer .main-footer .middle-section .right-part {
    display: block;
  }

  footer .main-footer .middle-section .right-part a {
    margin-right: 0;
    width: fit-content;
    display: flex;
    margin: 0 auto;
  }

  footer .main-footer .middle-section .right-part a:first-child img {
    margin-bottom: 10px;
  }

  footer .main-footer .middle-section .right-part a img {
    margin: 0 auto;
  }

  footer .main-footer .bottom-section ul li:not(:last-child) {
    margin-right: 12px;
  }
}

@media (min-width: 992px) {

  /* Footer Section CSS*/
  footer .main-footer .middle-section .left-part .accordion-collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }

  footer .main-footer .middle-section .left-part .accordion-button::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .terms-conditions .container-fluid {
    max-width: 100%;
    padding: 20px 15px;
  }

  .terms-conditions h1 {
    font-size: 25px;
  }

  .terms-conditions h2 {
    font-size: 20px;
  }

  .terms-conditions p,
  .terms-conditions li {
    font-size: 16px;
  }
}