/*----------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

/*----------------------------------------------------*/

/*----------------------------------------------------*/

@font-face {
  font-family: nordecocyrillic;

  src: url(../img/font/nordecocyrillic.otf);
}

:root {
  --theme-color: #6d27e5;

  --theme-title-color: #171d24;

  --theme-text-color: #6a737c;

  --theme-border-color: #dde1e5;

  --theme-dropshadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1),
    0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);

  --brand_color: #0050b2;

  --brand_color: #04783b;

  --secondary_color: var(--theme-title-color);

  --p_color: #4c5267;

  --gradient_bg_color1: var(--gradient_bg_color-from, #fffbf2);

  --gradient_bg_color2: var(--gradient_bg_color-to, #edfffd);

  --border_on_white: #e6edf0;

  --border_on_highlight: #e6edf0;

  --body_bg: #fff;

  --bs-white: #fff;

  --black_25: #f9f9f9;

  --black_50: #ebebeb;

  --black_100: #d6d9dc;

  --black_150: #c8ccd0;

  --black_200: #bbc0c4;

  --black_300: #9fa6ad;

  --black_350: #9199a1;

  --black_400: #848d95;

  --black_500: #6a737c;

  --black_600: #535a60;

  --black_700: #3c4146;

  --black_750: #2f3337;

  --black_800: #242729;

  --black_850: #101010;

  --black_900: #0c0d0e;

  --font-color-white: #ffffff;

  --font-color-gray: #6b707f;

  --bs_sm: 0 1px 2px rgb(0 0 0 / 5%), 0 1px 4px rgb(0 0 0 / 5%),
    0 2px 8px rgb(0 0 0 / 5%);

  --bs_md: 0 1px 3px rgb(0 0 0 / 6%), 0 2px 6px rgb(0 0 0 / 6%),
    0 3px 8px rgb(0 0 0 / 9%);

  --bs_lg: 0 1px 4px rgb(0 0 0 / 9%), 0 3px 8px rgb(0 0 0 / 9%),
    0 4px 13px rgb(0 0 0 / 13%);
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  background-color: #d5faecc5;
  width: 100%;
  overflow-x: hidden;
}

a:focus,
.button:focus {
  text-decoration: none;

  outline: none;
}

a:focus,
a:hover {
  color: inherit;

  text-decoration: none;
}

a,
button {
  color: inherit;

  outline: none;

  border: none;

  text-decoration: none;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;

  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;

  color: var(--secondary_color);

  margin-top: 0;

  font-weight: 500;

  line-height: 1.2;

  transition: all 0.3s ease-out 0s;
}

ul {
  margin: 0px;

  padding: 0px;
}

li {
  list-style: none;
  list-style-position: inside !important;
}

p {
  margin: 0;

  padding: 0;
}

h1 {
  font-size: 50px;

  line-height: 60px;
}

h2 {
  font-size: 36px;

  line-height: 42px;
}

h3 {
  font-size: 30px;

  line-height: 36px;
}

h4 {
  font-size: 24px;

  line-height: 30px;
}

h5 {
  font-size: 20px;
}

.bg_white {
  background-color: #fff !important;
}

.bg_primary {
  background-color: var(--brand_color) !important;
}

.bg_disable {
  background-color: #f5f7fa !important;
}

.border-start,
.border-end,
.border-bottom,
.border-top {
  border-color: var(--black_50) !important;
}

*::-moz-selection {
  background-color: var(--brand_color) !important;

  color: #ffffff;

  text-shadow: none;
}

.aboutimg {
  width: 300px !important;
}
::-moz-selection {
  background-color: var(--brand_color) !important;

  color: #ffffff;

  text-shadow: none;
}

::selection {
  background-color: var(--brand_color) !important;

  color: #ffffff;

  text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;

  margin: 0;
}

.form-check .form-check-input:checked[type="radio"] {
  background-color: #fff;

  border-color: var(--brand_color);
}

.form-check .form-check-input:checked[type="radio"] ~ .form-check-label {
  color: var(--secondary_color);
}

.form-check .form-check-label {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%230050B2'/%3e%3c/svg%3e");
}

.form-control {
  border-color: var(--black_50);

  color: #a8a8b2;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

.form-control:focus {
  border-color: var(--brand_color);

  box-shadow: none;
}

.floating-input {
  position: relative;

  z-index: 1;
}

.floating-input textarea.form-control {
  height: inherit;

  padding-top: 23px;

  padding-bottom: 23px;
}

.floating-input textarea ~ label {
  top: 23px;

  transform: inherit;
}

.floating-input .form-control {
  height: 60px;

  border-radius: 4px;

  border: 1px solid var(--black_50);

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  background-color: transparent;

  color: #848d95;

  padding: 0 24px;
}

.floating-input .form-control:not(:placeholder-shown) ~ label {
  top: -1px;

  color: #848d95;

  background-color: #f5f7fa;

  padding: 0 4px;

  font-size: 12px;

  left: 24px;

  z-index: 1;
}

.floating-input .form-control:focus {
  background-color: transparent;

  border-color: var(--brand_color);
}

.floating-input .form-control:focus ~ label {
  top: -1px;

  color: var(--brand_color);

  background-color: #f5f7fa;

  padding: 0 4px;

  font-size: 12px;

  left: 24px;

  z-index: 1;

  transform: translateY(-50%);
}

.floating-input label {
  position: absolute;

  top: 50%;

  left: 25px;

  transform: translateY(-50%);

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #848d95;

  transition: all 0.3s ease-out;

  text-transform: capitalize;

  z-index: -1;
}

/* +++++++++++++++++++++++++++ */

.how_to_own ul li {
  padding: 5px 0;

  font-weight: bold;

  font-size: 18px;
}

.how_to_own ul li img {
  width: 60px;

  filter: brightness(0) saturate(100%) invert(43%) sepia(99%) saturate(564%)
    hue-rotate(86deg) brightness(91%) contrast(91%);
}

.how_to_own ul li p {
  padding: 8px 0;
}

/* +++++++++++++++++++++++++++ */

/*  section title css */

.section-title {
  text-align: center;

  /*  New Version */
}

.section_heading {
  font-size: 30px !important;

  font-family: "Poppins", sans-serif !important;

  font-weight: 600 !important;

  line-height: 120% !important;
}

.section-title .short-title {
  display: inline-block;

  font-size: 14px;

  color: var(--brand_color);

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin: 10px 0;
}

.section-title .short-title-2 {
  display: inline-block;

  font-family: "Poppins";

  font-size: 14px;

  font-weight: 600;

  line-height: 24px;

  letter-spacing: 0.05em;

  text-transform: uppercase;

  margin-bottom: 5px;

  color: #a7b4c0;
}

.section-title h1 {
  font-size: 50px;

  font-family: "Poppins", sans-serif;

  font-weight: 700;
}

.section-title h2 {
  font-size: 36px;

  color: var(--secondary_color);

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  margin-bottom: 20px;
}

.section-title P {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);

  line-height: 26px;
}

/*----------------------------------------*/

/*       New Version

/*----------------------------------------*/

.underline-shape {
  position: relative;

  z-index: 1;

  display: inline-block;
}

.underline-shape::after {
  content: "";

  position: absolute;

  left: -4px;

  width: calc(100% + 8px);

  bottom: 7px;

  background-color: #72b1ff;

  z-index: -1;

  height: 27%;
}

.read-more-btn {
  font-size: 18px;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  color: var(--brand_color);

  display: inline-block;

  margin-top: 30px;
}

.read-more-btn span {
  position: relative;
}

.read-more-btn span::after {
  content: "";

  position: absolute;

  top: 100%;

  width: 0px;

  height: 1px;

  background-color: var(--brand_color);

  transition: all 0.3s ease-out;

  left: 0;
}

.read-more-btn:hover span::after {
  width: 100%;
}

.read-more-btn i {
  font-size: 18px;

  vertical-align: middle;
}

/*-------------   End    ------------------*/

/*----------------------------------------*/

/*   Back To Top Button CSS

/*----------------------------------------*/

#back-to-top {
  display: inline-block;

  background-color: #dcdcdccc;

  width: 40px;

  height: 40px;

  text-align: center;

  border-radius: 4px;

  position: fixed;

  bottom: 30px;

  right: 30px;

  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

  opacity: 0;

  visibility: hidden;

  z-index: 1000;

  display: flex;

  align-items: center;

  justify-content: center;
}

#back-to-top:hover {
  cursor: pointer;

  background-color: #333;
}

#back-to-top i {
  color: #069f2d;
}

#back-to-top:hover i {
  color: #fff;
}

#back-to-top:active {
  background-color: #555;
}

#back-to-top.show {
  opacity: 1;

  visibility: visible;
}

.saas-section-title h2 {
  font-size: 52px;

  font-weight: 500;

  line-height: 70px;

  font-family: "Poppins", sans-serif;

  margin-bottom: 16px;
}

.saas-section-title h2 span {
  background: linear-gradient(90deg, #53dfc6 45.35%, #6299fc 100%);

  -webkit-text-fill-color: transparent;
}

.saas-section-title p {
  color: #878ba9;

  font-family: "Roboto", sans-serif;

  font-size: 18px;

  font-weight: 400;

  line-height: 28px;
}

.text-btn {
  font-size: 16px;

  font-weight: 600;

  font-family: "Roboto", sans-serif;

  color: #1b2a52;

  position: relative;

  display: inline-block;

  line-height: 18px;

  transition: all 0.2s linear;
}

.text-btn:before {
  content: "";

  height: 1px;

  background: #1b2a52;

  position: absolute;

  left: auto;

  right: 0;

  bottom: 0;

  width: 100%;

  transition: width 0.7s linear;
}

.text-btn:after {
  content: "";

  display: inline-block;

  width: 0;

  left: 0;

  height: 1px;

  background: var(--brand_color);

  position: absolute;

  bottom: 0;

  transition: all 0.6s linear;
}

.text-btn:hover {
  color: var(--brand_color);
}

.text-btn:hover:before {
  width: 0px;

  transition: width 0.4s linear;
}

.text-btn:hover:after {
  width: 100%;
}

.bank-section-title .short-title-2 {
  font-size: 20px;

  color: #069f2d;

  /* color: #7e069f; */

  font-weight: 600;

  margin-bottom: 12px;
}

.bank-section-title h1 {
  font-weight: 500;

  font-size: 52px;

  margin-bottom: 30px;
}

.bank-section-title h1 .underline-shape::after {
  height: 11px;

  background: #f57b47;

  border-radius: 2px;
}

.bank-section-title p {
  font-size: 18px;
}

.bank-section-title.color-white h1 {
  color: #fff;
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

.theme-btn {
  display: inline-block;

  font-size: 18px;

  color: #fff;

  height: 50px;

  line-height: 50px;

  border-radius: 4px;

  position: relative;

  z-index: 1;

  background-color: var(--brand_color);

  padding: 0 35px;

  overflow: hidden;

  text-align: center;

  text-transform: capitalize;

  font-family: "Roboto", sans-serif;

  font-weight: 500;
}

.theme-btn::before {
  background: linear-gradient(-30deg, #3fcc4f, #61cc6a);

  color: white;

  position: absolute;

  left: -1px;

  top: -1px;

  z-index: -1;

  height: 103%;

  width: 102%;

  border-radius: 4px;

  content: "";

  -webkit-transform: scale(0, 1);

  -ms-transform: scale(0, 1);

  transform: scale(0, 1);

  -webkit-transform-origin: top right;

  -ms-transform-origin: top right;

  transform-origin: top right;

  -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);

  -moz-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);

  -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);

  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);

  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.theme-btn:hover {
  color: #ffffff !important;

  -webkit-transition: all 0.5s ease-in-out;

  -moz-transition: all 0.5s ease-in-out;

  -ms-transition: all 0.5s ease-in-out;

  -o-transition: all 0.5s ease-in-out;

  transition: all 0.5s ease-in-out;
}

.theme-btn:hover::before {
  -webkit-transform: scale(1, 1);

  -ms-transform: scale(1, 1);

  transform: scale(1, 1);

  -webkit-transform-origin: top left;

  -ms-transform-origin: top left;

  transform-origin: top left;
}

.theme-btn:hover i {
  transform: translateY(-1px) translateX(8px);
}

.theme-btn:hover i.arrow_left {
  transform: translateY(-1px) translateX(-8px);
}

.theme-btn i {
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);

  font-size: 18px;

  display: inline-block;

  vertical-align: middle;

  transform: translateY(-1px) translateX(0px);
}

.theme-btn i.arrow_left {
  padding-right: 5px;
}

.theme-btn.theme-btn-alt {
  background-color: #fff;

  color: var(--brand_color);
}

.theme-btn.theme-btn-alt:hover {
  color: #fff;
}

.theme-btn.theme-btn-primary_alt {
  color: var(--brand_color);

  background-color: rgba(0, 80, 178, 0.05);

  transition: all 0.3s ease-out;

  overflow: inherit;
}

.theme-btn.theme-btn-primary_alt i {
  transform: translate(0);
}

.theme-btn.theme-btn-primary_alt::before {
  display: none;
}

.theme-btn.theme-btn-primary_alt:hover {
  background-color: #0050b2;

  color: #fff;
}

.theme-btn.theme-btn-primary_alt:hover i {
  transform: translate(0);
}

.theme-btn.theme-btn-outlined {
  background-color: transparent;

  color: var(--brand_color);

  border: 1px solid var(--brand_color);
}

.theme-btn.theme-btn-outlined::before {
  display: none;
}

.theme-btn.theme-btn-outlined:hover {
  background-color: var(--brand_color);

  color: #fff;
}

.theme-btn.theme-btn-lg {
  height: 60px;

  line-height: 59px;

  padding: 0 40px;
}

.theme-btn.theme-btn-outlined_alt {
  background-color: #fff;

  color: var(--brand_color);

  border: 1px solid #fff;
}

.theme-btn.theme-btn-outlined_alt::before {
  display: none;
}

.theme-btn.theme-btn-outlined_alt:hover {
  background-color: transparent;

  color: #fff;
}

.theme-btn.theme-btn-light {
  background-color: var(--black_50);

  color: var(--secondary_color);
}

.theme-btn.theme-btn-light:hover {
  color: #fff;
}

.theme-btn.theme-btn-rounded {
  border-radius: 25px;
}

.theme-btn.theme-btn-rounded::before {
  border-radius: 25px;
}

.theme-btn.theme-btn-rounded-2 {
  border-radius: 25px;

  box-shadow: none;

  transition: all 0.3s ease-out;
}

.theme-btn.theme-btn-rounded-2::before {
  display: none;
}

.theme-btn.theme-btn-rounded-2:hover {
  background-color: #171d24;

  color: #fff;

  box-shadow: 2px 5px 20px rgba(51, 77, 114, 0.2);
}

/*  Theme button 2 css */

.theme-btn-2 {
  display: inline-block;

  padding: 10px 20px 10px 14px;

  border-radius: 25px;

  position: relative;

  z-index: 1;

  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  color: var(--theme-color);

  text-transform: uppercase;
}

.theme-btn-2:hover {
  color: #fff;
}

.theme-btn-2:hover::before {
  left: 2px;

  height: 100%;

  width: 100%;

  background-color: #171d24;

  border-radius: 25px;
}

.theme-btn-2:hover .arrow {
  margin-right: 10px;
}

.theme-btn-2:hover .arrow .horizontal-line {
  width: 20px;
}

.theme-btn-2::before {
  content: "";

  position: absolute;

  top: 0;

  left: 2px;

  height: 100%;

  width: 44px;

  background-color: var(--theme-color);

  border-radius: 25px;

  z-index: -1;
}

.theme-btn-2 .arrow {
  position: relative;

  margin-right: 30px;

  margin-left: 3px;
}

.theme-btn-2 .arrow .horizontal-line {
  height: 1px;

  width: 0;

  background-color: #fff;

  display: inline-block;

  margin-bottom: 5px;

  position: relative;

  margin-left: 10px;
}

.theme-btn-2 .arrow .horizontal-line::after {
  content: "";

  position: absolute;

  width: 8px;

  height: 1px;

  left: -2px;

  background-color: #fff;

  transition: all 0.3s ease-in-out;

  transform: rotate(45deg);

  right: -2px;

  left: auto;

  bottom: 3px;
}

.theme-btn-2 .arrow .horizontal-line::before {
  content: "";

  position: absolute;

  width: 8px;

  height: 1px;

  left: -2px;

  background-color: #fff;

  transition: all 0.3s ease-in-out;

  transform: rotate(-45deg);

  right: -2px;

  left: auto;

  top: 3px;
}

.theme-btn-2.theme-btn-primary::before {
  background-color: transparent;

  background-image: linear-gradient(to top, #0050b2 0%, #4185d9 100%);
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

/*----------------------------------------*/

/*  Custom  Animations CSS

/*----------------------------------------*/

@keyframes spin1 {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1.5);
  }
}

@keyframes spin2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(40px);
  }
}

@keyframes customUp {
  0% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes clipInDown {
  0% {
    clip-path: polygon(-10% -10%, -10% -10%, 110% -10%, 110% -10%);
  }

  100% {
    clip-path: polygon(-10% 110%, -10% -10%, 110% -10%, 110% 110%);
  }
}

@keyframes moveX {
  0% {
    transform: translateX(0) rotate(0deg);
  }

  25% {
    transform: translateX(70px) rotate(90deg);
  }

  50% {
    transform: translateX(0px) rotate(170deg);
  }

  75% {
    transform: translateX(-70px) rotate(90deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes moveY {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(70px) rotate(90deg);
  }

  50% {
    transform: translateY(0px) rotate(170deg);
  }

  75% {
    transform: translateY(-70px) rotate(90deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatingBubble {
  0% {
    transform: translate(0, 0) scale(1);
  }

  20% {
    transform: translate(50px, -50px) scale(0.6);
  }

  40% {
    transform: translate(100px, -80px) scale(1);
  }

  60% {
    transform: translate(150px, -80px) scale(1.1);
  }

  80% {
    transform: translate(200px, -70px) scale(1);
  }

  100% {
    transform: translate(250px, -50px) scale(0.6);
  }
}

@keyframes floatingBubble2 {
  0% {
    transform: translate(0, 0) scale(0.6);
  }

  20% {
    transform: translate(-50px, 100px) scale(1);
  }

  40% {
    transform: translate(-100px, 50px) scale(1.1);
  }

  60% {
    transform: translate(0px, 50px) scale(1);
  }

  80% {
    transform: translate(50px, -50px) scale(0.6);
  }

  100% {
    transform: translate(100px, -100px) scale(1);
  }
}

@keyframes floatingBubbles {
  0% {
    transform: scale(0.3);

    opacity: 0;
  }

  100% {
    transform: scale(1);

    opacity: 0.4;
  }
}

.floatingBubbles {
  -webkit-animation-name: floatingBubbles;

  animation-name: floatingBubbles;
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 1;

    -webkit-transform: translate(-50%, -50%) scale(0.5);

    transform: translate(-50%, -50%) scale(0.5);
  }

  to {
    opacity: 0;

    -webkit-transform: translate(-50%, -50%) scale(4);

    transform: translate(-50%, -50%) scale(4);
  }
}

@keyframes pulsate {
  0% {
    opacity: 1;

    -webkit-transform: translate(-50%, -50%) scale(0.5);

    transform: translate(-50%, -50%) scale(0.5);
  }

  to {
    opacity: 0;

    -webkit-transform: translate(-50%, -50%) scale(4);

    transform: translate(-50%, -50%) scale(4);
  }
}

/*   HEADER CSS

/*----------------------------------------*/

header {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9997;
}

header .header-top.bg_white .header-info-left {
  color: var(--p_color);
}

header .header-top.bg_white .header-info-right ul li a {
  color: var(--p_color);
}

header .header-top.bg_white .header-info-right ul li i {
  color: #6a737c;
}

header .header-top .header-info-left {
  display: flex;

  align-items: center;

  color: #bbc0c4;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

header .header-top .header-info-left .language-list .nice-select {
  background-color: transparent;

  border: none;

  padding-left: 0;
}

header .header-top .header-info-left .timestamp i {
  display: block;

  margin-right: 5px;

  float: left;

  margin-top: 2px;
}

header .header-top .header-info-right {
  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

header .header-top .header-info-right ul {
  display: flex;

  justify-content: flex-end;

  align-items: center;
}

header .header-top .header-info-right ul li {
  margin: 0 15px;
}

header .header-top .header-info-right ul li:last-child {
  margin-right: 0;
}

header .header-top .header-info-right ul li img {
  margin-right: 8px;
}

header .header-top .header-info-right ul li a {
  color: #bbc0c4;

  font-size: 14px;
}

header .header-top .header-info-right ul li i {
  color: #bbc0c4;

  font-size: 14px;

  display: inline-block;

  margin-right: 8px;
}

.header-menu {
  z-index: 1;

  background-color: #49a250;

  transition: all 0.2s linear;
}

.header-menu.header-menu-4 .theme-btn:hover {
  background-color: var(--brand_color);
}

.header-menu.navbar_fixed {
  background: var(--bs-white);

  background: #49a250;

  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);

  position: fixed;

  z-index: 99;

  left: 0;

  right: 0;

  top: 0;

  transition: all 0.2s, top 0.4s linear;
}

.header-menu.navbar_fixed .navbar .sticky_logo .main {
  display: none;
}

.header-menu.navbar_fixed .navbar .sticky_logo .sticky {
  display: block;
}

.header-menu.navbar_fixed .navbar .sticky_logo .sticky {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2838%)
    hue-rotate(319deg) brightness(119%) contrast(99%) !important;
}

.header-menu .navbar {
  padding: 0 !important;
}

.header-menu .navbar .sticky_logo .main {
  display: block;

  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(302deg) brightness(103%) contrast(103%);
}

.header-menu .navbar .sticky_logo .sticky {
  display: none;
}

.header-menu .menu > .nav-item {
  padding-bottom: 25px;

  padding-top: 25px;

  transition: all 0.3s linear;
}

.header-menu .menu > .nav-item > .nav-link {
  font-size: 14px;

  color: #fff;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  position: relative;

  text-transform: uppercase;
}

.header-menu .menu > .nav-item > .nav-link.active::before {
  content: "";

  position: absolute;

  top: 100%;

  left: 50%;

  transform: translateX(-50%);

  height: 5px;

  width: 5px;

  border-radius: 50%;

  background-color: #fff;
}

.header-menu .menu > .nav-item > .nav-link::after {
  display: none;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu {
  margin: 0;

  border-radius: 4px;

  left: -26px;

  min-width: max-content;

  border: 1px solid var(--black_50);

  background: var(--bs-white);

  padding: 20px 0;

  box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
}

.header-menu .menu > .nav-item.submenu .dropdown-menu:before {
  content: "";

  width: 12px;

  height: 12px;

  background: var(--bs-white);

  position: absolute;

  top: -6px;

  transform: rotate(45deg);

  left: 40px;

  border-left: 1px solid var(--black_50);

  border-top: 1px solid var(--black_50);
}

@media (min-width: 992px) {
  .header-menu .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);

    transition: all 0.3s ease-in;

    opacity: 0;

    visibility: hidden;

    display: block;
  }
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item {
  padding: 0 30px;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  + .nav-item {
  margin-top: 8px;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link {
  display: flex;

  align-items: center;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link:before {
  display: none;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link
  img {
  margin-right: 20px;

  width: 32px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item {
  padding: 0 40px 0 30px;

  transition: all 0.3s linear;

  position: relative;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item > i {
  padding-right: 10px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item + .nav-item {
  margin-top: 18px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0;

  white-space: nowrap;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  color: var(--p_color);

  transition: color 0.2s linear;

  position: relative;

  display: inline-block;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link.active {
  color: var(--brand_color);
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link:after {
  display: none;
}

@media (min-width: 992px) {
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item:hover
    > .dropdown-menu,
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item:focus
    > .dropdown-menu,
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item.active
    > .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateX(1px) translateY(0px);
  }
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item:hover
  > .nav-link,
.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item:focus
  > .nav-link,
.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item.active
  > .nav-link {
  color: var(--brand_color);
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i,
.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i,
.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: var(--brand_color);
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  > .dropdown-menu {
  transition: all 0.3s ease-in;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  > .dropdown-menu:before {
  display: none;
}

@media (min-width: 992px) {
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item
    > .dropdown-menu {
    position: absolute;

    left: 100%;

    top: 0px;

    opacity: 0;

    display: block;

    visibility: hidden;

    transform: translateX(1px) translateY(20px);

    transition: all 0.3s ease-in;

    background: var(--bs-white);

    padding: 20px 0;

    box-shadow: none;
  }
}

.header-menu .menu > .nav-item.submenu.mega_menu .dropdown-menu {
  min-width: 540px;

  padding: 0;

  background: #4464a1;

  border: 0;

  max-height: 309px;

  min-height: 309px;
}

.header-menu .menu > .nav-item.submenu.mega_menu .dropdown-menu li > div {
  min-height: 309px;
}

.header-menu .menu > .nav-item.submenu.mega_menu .dropdown-menu .nav-pills {
  padding: 30px 0;

  background: #fff;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

  height: 100%;

  margin-right: -10px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item {
  padding: 0 30px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item:after {
  content: "5";

  position: absolute;

  right: 25px;

  top: -1px;

  font-family: "ElegantIcons";

  display: block;

  color: var(--theme-color);

  transition: all 0.2s linear;

  opacity: 0;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item
  .nav-link {
  font-size: 14px;

  color: var(--p_color);

  display: inline-block;

  border-radius: 0;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item
  .nav-link.active {
  background: transparent;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item
  + .nav-item {
  margin-top: 12px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item:hover:after,
.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item.active:after {
  opacity: 1;

  right: 20px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item:hover
  .nav-link,
.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabHeader
  .nav-item.active
  .nav-link {
  color: var(--theme-color);
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane {
  padding: 26px 10px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list {
  width: 50%;

  padding-bottom: 12px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list.w_100 {
  width: 100%;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list
  li {
  margin-bottom: 12px;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list
  li
  a {
  font-size: 14px;

  font-weight: 400;

  color: #fff;

  position: relative;

  font-family: "Roboto", sans-serif;

  font-weight: 500;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list
  li
  a:before {
  content: "";

  width: 0;

  height: 1px;

  background: #fff;

  position: absolute;

  left: 0;

  bottom: 0;

  transition: all 0.2s linear;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list
  li
  a:hover:before,
.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  .tab_list
  li
  a.active:before {
  width: 100%;
}

.header-menu
  .menu
  > .nav-item.submenu.mega_menu
  .dropdown-menu
  .tabContent
  .tab-pane
  p {
  font-size: 14px;

  line-height: 30px;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 0;
}

.header-menu .menu > .nav-item:hover > i {
  color: var(--brand_color);
}

@media (min-width: 992px) {
  .header-menu .menu > .nav-item:hover .dropdown-menu {
    opacity: 1;

    transform: translateY(0);

    visibility: visible;
  }
}

.header-menu .menu > .nav-item + .nav-item {
  margin-left: 38px;
}

.header-menu .theme-btn {
  margin-left: 55px;
}

.header-menu.header-menu-1 .theme-btn {
  background-color: #fff;

  color: var(--theme-color);
}

.header-menu.header-menu-1 .theme-btn:hover {
  color: #fff;

  background-color: var(--secondary_color);
}

.header-menu.header-menu-2 .menu > .nav-item > .nav-link {
  color: #6a737c;
}

.header-menu.header-menu-2 .menu > .nav-item > .nav-link.active {
  color: var(--brand_color);
}

.header-menu.header-menu-2 .menu > .nav-item > .nav-link::before {
  background-color: var(--brand_color);
}

.header-menu.header-menu-3 {
  background-color: rgba(23, 29, 36, 0.5);
}

.header-menu.header-menu-3 .theme-btn-outlined {
  color: #fff;

  border-color: #fff;
}

.header-menu.header-menu-3 .theme-btn-outlined:hover {
  color: var(--brand_color);

  background-color: #fff;
}

.navbar-toggler {
  padding-right: 0;

  padding-left: 0;
}

.hamburger span {
  width: 0%;

  height: 2px;

  position: relative;

  top: 0;

  left: 0;

  margin: 4px 0;

  display: block;

  background: white;

  border-radius: 3px;

  -webkit-transition: 0.2s ease-in-out;

  transition: 0.2s ease-in-out;
}

.hamburger span:nth-child(1) {
  transition-delay: 0s;
}

.hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}

.hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}

.menu_toggle {
  width: 22px;

  height: 22px;

  position: relative;

  cursor: pointer;

  display: block;
}

.menu_toggle .hamburger {
  position: absolute;
}

.menu_toggle .hamburger-cross {
  position: absolute;

  height: 100%;

  width: 100%;

  transform: rotate(45deg);

  display: block;

  z-index: 999;
}

.menu_toggle .hamburger-cross span {
  display: block;

  background: #49a250;

  border-radius: 3px;

  -webkit-transition: 0.2s ease-in-out;

  transition: 0.2s ease-in-out;
}

.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;

  width: 2px;

  position: absolute;

  top: 0;

  left: 10px;

  transition-delay: 0.3s;
}

.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;

  height: 2px;

  position: absolute;

  left: 0;

  top: 10px;

  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}

.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}

.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;

  transition-delay: 0s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;

  transition-delay: 0.2s;
}

.mobile_dropdown_icon {
  display: none;
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

/*----------------------------------------*/

/*  banner CSS

/*----------------------------------------*/

.banner-area {
  background-color: var(--theme-color);

  background-image: url(../img/banner/bg-img.webp);

  background-position: center;

  background-size: cover;

  position: relative;

  /* floating bubbles */
}

.banner-area .bubbles {
  position: absolute;

  width: 100%;

  top: 0;

  left: 0;

  height: 100%;

  overflow: hidden;
}

.banner-area .bubbles .bubble {
  height: 15px;

  width: 15px;

  border-radius: 50%;

  animation-iteration-count: infinite;

  animation-timing-function: linear;

  animation-direction: alternate;

  -webkit-animation-duration: 1.5s;

  animation-duration: 1.5s;

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;

  animation-name: zoomIn;
}

.banner-area .bubbles div {
  position: absolute;
}

.banner-area .bubbles div:nth-child(1) {
  bottom: 20%;

  left: 5%;
}

.banner-area .bubbles div:nth-child(1) .bubble {
  animation-delay: 0.5s;

  background-color: rgba(255, 255, 255, 0.4);
}

.banner-area .bubbles div:nth-child(2) {
  bottom: 65%;

  left: 20%;
}

.banner-area .bubbles div:nth-child(2) .bubble {
  background-color: rgba(246, 166, 9, 0.4);
}

.banner-area .bubbles div:nth-child(3) {
  bottom: 15%;

  left: 30%;
}

.banner-area .bubbles div:nth-child(3) .bubble {
  animation-delay: 1s;

  background-color: #f6a609;
}

.banner-area .bubbles div:nth-child(4) {
  bottom: 50%;

  left: 40%;
}

.banner-area .bubbles div:nth-child(4) .bubble {
  animation-delay: 0.8s;

  animation-direction: alternate-reverse;

  background-color: rgba(42, 199, 105, 0.4);
}

.banner-area .bubbles div:nth-child(5) {
  bottom: 20%;

  right: 5%;
}

.banner-area .bubbles div:nth-child(5) .bubble {
  animation-delay: 0.5s;

  background-color: rgba(246, 166, 9, 0.4);
}

.banner-area .bubbles div:nth-child(6) {
  bottom: 65%;

  right: 20%;
}

.banner-area .bubbles div:nth-child(6) .bubble {
  background-color: #2ac769;
}

.banner-area .bubbles div:nth-child(7) {
  bottom: 15%;

  right: 30%;
}

.banner-area .bubbles div:nth-child(7) .bubble {
  animation-delay: 1.1s;

  background-color: rgba(42, 199, 105, 0.4);
}

.banner-area .bubbles div:nth-child(8) {
  bottom: 50%;

  right: 40%;
}

.banner-area .bubbles div:nth-child(8) .bubble {
  animation-delay: 0.2s;

  background-color: rgba(255, 255, 255, 0.4);
}

.banner-area .logos {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  overflow: hidden;
}

.banner-area .logos img {
  position: absolute;

  animation: pulse ease-out infinite;

  -webkit-animation-duration: 1.5s;

  animation-duration: 1.5s;

  -webkit-animation-fill-mode: both;

  animation-fill-mode: both;
}

.banner-area .logos img:nth-child(1) {
  bottom: 15%;

  left: 10%;

  animation-delay: 0.5s;
}

.banner-area .logos img:nth-child(2) {
  bottom: 45%;

  left: 20%;
}

.banner-area .logos img:nth-child(3) {
  bottom: 20%;

  left: 30%;

  animation-delay: 1s;
}

.banner-area .logos img:nth-child(4) {
  bottom: 20%;

  right: 30%;

  animation-delay: 0.5s;
}

.banner-area .logos img:nth-child(5) {
  bottom: 15%;

  right: 10%;
}

.banner-area .logos img:nth-child(6) {
  bottom: 45%;

  right: 20%;

  animation-delay: 0.8s;
}

.banner-area .banner-content h1 {
  font-size: 60px;

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  color: #fff;

  text-transform: capitalize;

  position: relative;

  z-index: 1;

  line-height: 70px;
}

.banner-area .banner-content .img-area {
  position: relative;

  z-index: 2;
}

.banner-area .banner-content .symbol-pulse {
  position: absolute;

  top: 71%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  z-index: -1;

  width: 100%;

  height: 100%;

  overflow: hidden;
}

.banner-area .banner-content .symbol-pulse div {
  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  border-radius: 100%;

  background-image: -webkit-gradient(
    linear,
    left top,

    left bottom,

    from(rgba(255, 255, 255, 0.04)),
    color-stop(65%, rgba(255, 255, 255, 0.04)),
    to(rgba(255, 255, 255, 0.04))
  );

  background-image: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.04) 0,

    rgba(255, 255, 255, 0.04) 65%,

    rgba(255, 255, 255, 0.04) 100%
  );

  background-image: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.04) 0,

    rgba(255, 255, 255, 0.04) 65%,

    rgba(255, 255, 255, 0.04) 100%
  );

  background-image: linear-gradient(
    -180deg,

    rgba(255, 255, 255, 0.04) 0,

    rgba(255, 255, 255, 0.04) 65%,

    rgba(255, 255, 255, 0.04) 100%
  );

  width: 28rem;

  height: 28rem;
}

.banner-area .banner-content .symbol-pulse .pulse-1 {
  -webkit-transform: translate(-50%, -50%) scale(0.67);

  -ms-transform: translate(-50%, -50%) scale(0.67);

  transform: translate(-50%, -50%) scale(0.67);
}

.banner-area .banner-content .symbol-pulse .pulse-1 {
  -webkit-transform: translate(-50%, -50%) scale(0.75);

  -ms-transform: translate(-50%, -50%) scale(0.75);

  transform: translate(-50%, -50%) scale(0.75);
}

.banner-area .banner-content .symbol-pulse .pulse-2 {
  -webkit-transform: translate(-50%, -50%) scale(1.01);

  -ms-transform: translate(-50%, -50%) scale(1.01);

  transform: translate(-50%, -50%) scale(1.01);
}

.banner-area .banner-content .symbol-pulse .pulse-x {
  will-change: transform;

  -webkit-animation: pulsate 3s infinite;

  animation: pulsate 3s infinite;
}

/*----------------------------------------*/

/*   Breadcrumb CSS

/*----------------------------------------*/

.breadcrumb-widget {
  text-align: center;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  position: relative;

  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
}

.breadcrumb-widget::after {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  background: linear-gradient(
    to bottom,

    #49a250,
    #49a250,
    #49a250a9,
    #d5f9eb8a
  );
}

.breadcrumb-widget .breadcrumb-content {
  position: relative;

  z-index: 1;
}

.breadcrumb-widget .breadcrumb-content h1 {
  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  margin-bottom: 10px;

  text-transform: capitalize;
}

.breadcrumb-widget.breadcrumb-widget-2 {
  overflow: hidden;
}

.breadcrumb-widget.breadcrumb-widget-2::after {
  background-color: rgba(36, 36, 54, 0.7);
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape {
  position: absolute;

  opacity: 0.15;
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape.shape-1 {
  bottom: 0;

  left: 10%;
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape.shape-2 {
  top: 0;

  left: 20%;

  height: 100%;
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape.shape-3 {
  top: 0%;

  right: 33%;
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape.shape-4 {
  bottom: 0;

  right: 1%;
}

.breadcrumb-widget.breadcrumb-widget-2 .shapes .one-shape img {
  max-height: 100%;
}

.breadcrumb-widget.breadcrumb-widget-2 .search-box input {
  height: 60px;

  padding: 19px 25px;

  color: #c8ccd0;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  font-size: 16px;

  border-radius: 5px;

  background-color: transparent;

  border: 1px solid #d8dce0;
}

.breadcrumb-widget.breadcrumb-widget-2 .search-box input::placeholder {
  color: #c8ccd0;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  font-size: 16px;
}

.breadcrumb-widget.breadcrumb-widget-2 .search-box .search-btn {
  padding: 15px;

  background-color: #fff;

  border-radius: 5px;
}

.breadcrumb-widget.breadcrumb-widget-2 .search-box .search-btn i {
  display: inline-block;

  vertical-align: middle;

  color: var(--brand_color);

  font-size: 25px;

  transform: scaleX(-1);
}

.breadcrumb-widget.breadcrumb-widget-2 .popular-tags span {
  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #d8dce0;

  margin-right: 15px;
}

.breadcrumb-widget.breadcrumb-widget-2 .popular-tags a {
  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #fff;

  padding: 4px 22px;

  background-color: rgba(255, 255, 255, 0.4);

  border-radius: 2px;

  margin-right: 10px;
}

.breadcrumb-widget.breadcrumb-widget-2 .popular-tags a:hover {
  background-color: #fff;

  color: var(--brand_color);
}

.breadcrumb-widget.breadcrumb-widget-2 .post-info {
  display: flex;

  align-items: center;

  justify-content: center;
}

.breadcrumb-widget.breadcrumb-widget-2 .post-info div {
  display: flex;

  align-items: center;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #c8ccd0;
}

.breadcrumb-widget.breadcrumb-widget-2 .post-info div span {
  margin-left: 8px;
}

.breadcrumb-widget.breadcrumb-widget-3::after {
  background-color: rgba(24, 23, 61, 0.8);
}

/*============= banner-saas-area css ================*/

.banner-saas-area {
  background: #f8fcfc;

  background: linear-gradient(
    180deg,
    #eef3fe 0%,

    rgba(242, 242, 242, 0.38) 100%
  );

  padding-top: 220px;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.banner-saas-area .shape_img {
  position: absolute;

  top: 0;

  left: 0;

  z-index: -1;

  width: 100%;

  height: 100%;
}

.saas-banner-content h5 {
  border-radius: 12px;

  border: 1px solid #c1d2e1;

  background: #f6f9ff;

  font-size: 14px;

  font-weight: 600;

  color: #7b7f9c;

  font-family: "Roboto", sans-serif;

  padding: 11px 16px 10px 16px;

  display: inline-block;

  margin-bottom: 35px;
}

.saas-banner-content h1 {
  color: var(--secondary_color);

  text-align: center;

  font-family: "Poppins", sans-serif;

  font-size: 74px;

  font-style: normal;

  font-weight: 600;

  line-height: 98px;

  letter-spacing: -3px;

  margin-bottom: 35px;
}

.saas-banner-content h1 span {
  background: linear-gradient(90deg, #5e80ff 45.35%, #fc82ac 100%);

  -webkit-text-fill-color: transparent;
}

.saas-banner-content p {
  font-size: 24px;

  line-height: 42px;

  color: #878ba9;

  font-family: "Poppins", sans-serif;

  max-width: 760px;

  margin-left: auto;

  margin-right: auto;

  margin-bottom: 45px;
}

.saas-banner-content .theme-btn {
  border-radius: 8px;

  margin: 0px 12px;

  font-family: "Poppins", sans-serif;

  font-size: 20px;

  font-weight: 500;
}

.saas-banner-content .theme-btn + .theme-btn {
  border: 1px solid #c1d2e1;

  color: #1b2a52;
}

.saas-banner-content .theme-btn + .theme-btn:hover {
  color: #fff;
}

.dahbord_img {
  margin: 80px -146px 0px;
}

@media (max-width: 1440px) {
  .dahbord_img {
    margin-left: 0;

    margin-right: 0;
  }
}

@media (max-width: 1440px) {
  .dahbord_img img {
    max-width: 100%;
  }
}

.bank-banner-area {
  /* background: linear-gradient(30deg,#03045e,#006094); */

  background: #49a250;

  padding: 200px 0px 50px 0px;

  position: relative;

  /* overflow: hidden; */

  z-index: 1;

  margin-bottom: 250px;

  color: white !important;
}

.header-menu.navbar_fixed.header-menu-1 .theme-btn,
.header-menu.navbar_fixed.header-menu-3 .theme-btn,
.header-menu.navbar_fixed.header-menu-4 .theme-btn {
  background-color: var(--theme-color);

  color: #fff;
}

.header-menu.navbar_fixed.header-menu-1
  .navbar
  .menu
  > .nav-item
  .mobile_dropdown_icon:hover,
.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item
  .mobile_dropdown_icon:hover,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item
  .mobile_dropdown_icon:hover {
  color: var(--theme-color);

  color: white;
}

.header-menu.navbar_fixed.header-menu-1
  .navbar
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link.active,
.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link.active,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link.active {
  color: var(--brand_color);

  color: white;
}

.header-menu.navbar_fixed.header-menu-1 .navbar .menu > .nav-item > .nav-link,
.header-menu.navbar_fixed.header-menu-3 .navbar .menu > .nav-item > .nav-link,
.header-menu.navbar_fixed.header-menu-4 .navbar .menu > .nav-item > .nav-link {
  color: white;
}

.header-menu.navbar_fixed.header-menu-1
  .navbar
  .menu
  > .nav-item
  > .nav-link.active,
.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item
  > .nav-link.active,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item
  > .nav-link.active {
  color: white;
}

.header-menu.navbar_fixed.header-menu-1
  .navbar
  .menu
  > .nav-item
  > .nav-link::before,
.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item
  > .nav-link::before,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item
  > .nav-link::before {
  background-color: var(--theme-color);
}

.header-menu.navbar_fixed.header-menu-1 .navbar .navbar-toggler .hamburger span,
.header-menu.navbar_fixed.header-menu-3 .navbar .navbar-toggler .hamburger span,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .navbar-toggler
  .hamburger
  span {
  background-color: var(--secondary_color);
}

.header-menu.navbar_fixed.header-menu-1
  .navbar
  .navbar-toggler
  .hamburger-cross
  span,
.header-menu.navbar_fixed.header-menu-3
  .navbar
  .navbar-toggler
  .hamburger-cross
  span,
.header-menu.navbar_fixed.header-menu-4
  .navbar
  .navbar-toggler
  .hamburger-cross
  span {
  background-color: var(--secondary_color);
}

.header-menu.navbar_fixed.header-menu-3 {
  background-color: var(--bs-white);
}

.header-menu.navbar_fixed.header-menu-3 .theme-btn {
  background-color: var(--brand_color);

  color: #fff;

  border-color: transparent;
}

.header-menu.navbar_fixed.header-menu-3 .theme-btn:hover {
  background-color: transparent;

  border-color: var(--brand_color);

  color: var(--brand_color);

  transition: all 0.3s ease-in-out;
}

.header-menu.navbar_fixed.header-menu-3 .navbar .menu > .nav-item > .nav-link {
  color: var(--secondary_color);
}

.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item
  > .nav-link.active {
  color: var(--brand_color);
}

.header-menu.navbar_fixed.header-menu-3
  .navbar
  .menu
  > .nav-item
  > .nav-link::before {
  background-color: var(--brand_color);
}

.header-menu.navbar_fixed.header-menu-4 .theme-btn {
  background-color: var(--brand_color);
}

.header-menu.navbar_fixed.header-menu-4 .theme-btn:hover {
  background-color: var(--secondary_color);
}

.header-menu.navbar_fixed.header-menu-4 .navbar .menu > .nav-item > .nav-link {
  color: white;
}

.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item
  > .nav-link.active {
  color: white;
}

.header-menu.navbar_fixed.header-menu-4
  .navbar
  .menu
  > .nav-item
  > .nav-link::before {
  background-color: var(--brand_color);
}

.header-menu .navbar {
  padding: 0 !important;
}

.header-menu .navbar .sticky_logo .main {
  display: block;
}

.header-menu .navbar .sticky_logo .sticky {
  display: none;
}

.header-menu .menu > .nav-item {
  padding-bottom: 25px;

  padding-top: 25px;

  transition: all 0.3s linear;
}

.header-menu .menu > .nav-item > .nav-link {
  font-size: 14px;

  color: #fff;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  position: relative;

  text-transform: uppercase;
}

.header-menu .menu > .nav-item > .nav-link.active::before {
  content: "";

  position: absolute;

  top: 100%;

  left: 50%;

  transform: translateX(-50%);

  height: 5px;

  width: 5px;

  border-radius: 50%;

  background-color: #fff;
}

.header-menu .menu > .nav-item > .nav-link::after {
  display: none;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu {
  margin: 0;

  border-radius: 4px;

  left: -26px;

  min-width: max-content;

  border: 1px solid var(--black_50);

  background: var(--bs-white);

  padding: 20px 0;

  box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
}

.header-menu .menu > .nav-item.submenu .dropdown-menu:before {
  content: "";

  width: 12px;

  height: 12px;

  background: var(--bs-white);

  position: absolute;

  top: -6px;

  transform: rotate(45deg);

  left: 40px;

  border-left: 1px solid var(--black_50);

  border-top: 1px solid var(--black_50);
}

@media (min-width: 992px) {
  .header-menu .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);

    transition: all 0.3s ease-in;

    opacity: 0;

    visibility: hidden;

    display: block;
  }
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item {
  padding: 0 30px;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  + .nav-item {
  margin-top: 8px;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link {
  display: flex;

  align-items: center;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link:before {
  display: none;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu.dropdown_menu_two
  .nav-item
  .nav-link
  img {
  margin-right: 20px;

  width: 32px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item {
  padding: 0 40px 0 30px;

  transition: all 0.3s linear;

  position: relative;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item > i {
  padding-right: 10px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item + .nav-item {
  margin-top: 18px;
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0;

  white-space: nowrap;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 500;

  color: var(--p_color);

  transition: color 0.2s linear;

  position: relative;

  display: inline-block;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link.active {
  color: var(--brand_color);
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  .nav-link:after {
  display: none;
}

@media (min-width: 992px) {
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item:hover
    > .dropdown-menu,
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item:focus
    > .dropdown-menu,
  .header-menu
    .menu
    > .nav-item.submenu
    .dropdown-menu
    .nav-item.active
    > .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateX(1px) translateY(0px);
  }
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item:hover
  > .nav-link,
.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item:focus
  > .nav-link,
.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item.active
  > .nav-link {
  color: var(--brand_color);
}

.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i,
.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i,
.header-menu .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: var(--brand_color);
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  > .dropdown-menu {
  transition: all 0.3s ease-in;
}

.header-menu
  .menu
  > .nav-item.submenu
  .dropdown-menu
  .nav-item
  > .dropdown-menu:before {
  display: none;
}

.bank-banner-area svg {
  /* all: unset !important; */

  position: absolute;

  width: 100%;

  top: 100%;

  left: 0;

  z-index: -1;
}

.bank-banner-area .wave_img {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 370px;

  z-index: -1;
}

.bank-banner-content .headingtitel {
  font-size: 40px;

  font-weight: 500;

  color: #0b5591;

  text-transform: lowercase;

  margin-bottom: 0;

  font-family: nordecocyrillic !important;
}

.bank-banner-content .mainheading {
  color: #fff;

  font-size: 70px;

  line-height: 100%;

  letter-spacing: 0px;

  margin-bottom: 15px;

  letter-spacing: 4px;

  font-family: nordecocyrillic !important;
}

.bank-banner-content .ccolo {
  color: #0b5591;

  letter-spacing: 4px;
}

.bank-banner-content p {
  color: #fff;

  font-size: 18px;

  opacity: 0.9;

  margin-bottom: 25px;

  line-height: 200%;
}

.bank-banner-content .theme-btn.theme-btn-lg {
  border-radius: 30px;

  font-weight: 400;

  /* background: #31983d; */

  background: #2c7e00;
}

.active-user {
  color: #fff;

  font-size: 14px;

  font-family: "Poppins", sans-serif;
}

.user-img-inner {
  display: flex;

  margin-right: 15px;
}

.user-img-inner img {
  width: 56px;

  height: 56px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid #101010;
}

.user-img-inner img:not(:first-child) {
  margin-left: -10px;
}

.bank-card-img {
  position: relative;

  height: 100%;

  z-index: 1;
}

.bank-card-img .bank-card {
  position: absolute;
}

.bank-card-img .bank-card:nth-child(1) {
  bottom: 108px;

  z-index: 1;
}

.bank-card-img .bank-card:nth-child(2) {
  bottom: 0px;
}

.bank-card-img .bank-card:nth-child(3) {
  position: relative;

  z-index: -1;

  bottom: -100px;
}

.bank-card-img .shap {
  position: absolute;
}

.bank-card-img .shap.one {
  top: -26px;

  left: 54%;
}

.bank-card-img .shap.two {
  left: 200px;

  bottom: 80px;
}

.bank-card-img .shap.three {
  right: 100%;

  top: -158px;

  /* background-color: gold; */
}

.bank-card-img .shap.four {
  right: -230px;

  bottom: 280px;
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

/*----------------------------------------*/

/*   feature CSS

/*----------------------------------------*/

.feature-area {
  position: relative;

  z-index: 2;
}

.feature-card-widget,
.feature-card-widget-2,
.feature-card-widget-4,
.feature-card-widget-5,
.feature-card-widget-6,
.feature-card-widget-7 {
  text-align: center;

  background-color: var(--bs-white);

  box-shadow: 0 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);

  transition: all 0.3s ease-out;

  padding: 20px !important;
}

.feature-card-widget:hover,
.feature-card-widget-2:hover,
.feature-card-widget-4:hover,
.feature-card-widget-5:hover,
.feature-card-widget-6:hover,
.feature-card-widget-7:hover {
  box-shadow: 0 20px 45px rgba(96, 205, 165, 0.15);
}

.feature-card-widget img,
.feature-card-widget-2 img,
.feature-card-widget-4 img,
.feature-card-widget-5 img,
.feature-card-widget-6 img,
.feature-card-widget-7 img {
  max-width: 100%;
}

.feature-card-widget h4,
.feature-card-widget-2 h4,
.feature-card-widget-4 h4,
.feature-card-widget-5 h4,
.feature-card-widget-6 h4,
.feature-card-widget-7 h4 {
  font-size: 24px;

  color: var(--secondary_color);

  font-family: "Poppins", sans-serif;

  font-weight: 600;
}

.feature-card-widget h5,
.feature-card-widget-2 h5,
.feature-card-widget-4 h5,
.feature-card-widget-5 h5,
.feature-card-widget-6 h5,
.feature-card-widget-7 h5 {
  font-size: 20px;

  color: var(--secondary_color);

  font-family: "Poppins", sans-serif;

  font-weight: 600;
}

.feature-card-widget-5 h6 {
  font-size: 19px;

  line-height: 24px;

  font-weight: 600;

  color: #058e40;

  padding-top: 10px;
}

.feature-card-widget-5 h6 del {
  font-size: 16px;

  line-height: 24px;

  font-weight: 500;

  color: #aeaeae;

  padding-left: 8px;
}

.feature-card-widget-5 .quickview {
  font-size: 16px;

  font-weight: 500;

  color: #ffffff;

  background: #04783b;

  padding: 10px 25px;

  margin-top: 10px;

  display: inline-block;

  border-radius: 30px;
}

.feature-card-widget p,
.feature-card-widget-2 p,
.feature-card-widget-4 p,
.feature-card-widget-5 p,
.feature-card-widget-6 p,
.feature-card-widget-7 p {
  font-size: 17px;

  line-height: 24px;

  font-weight: 600;

  color: #141414;

  padding-top: 20px;
}

.feature-card-widget {
  padding: 40px 25px;

  border-radius: 10px;
}

.feature-card-widget:hover {
  box-shadow: 0px 20px 45px rgba(51, 77, 114, 0.15);
}

.feature-card-widget:hover h4 {
  color: var(--theme-color);
}

.feature-card-widget .card-img {
  position: relative;
}

.feature-card-widget .card-img img {
  max-width: 100%;

  margin: 15px 0 25px 0;

  min-height: 54px;
}

.feature-card-widget h4 {
  text-transform: capitalize;

  margin-bottom: 5px;
}

.feature-card-widget p {
  margin: 11px 0 5px 0;
}

.feature-card-widget-2 {
  padding: 30px 25px;

  border-radius: 10px;
}

.feature-card-widget-2 .icon-bg-1,
.feature-card-widget-2 .icon-bg-2,
.feature-card-widget-2 .icon-bg-3,
.feature-card-widget-2 .icon-bg-4 {
  display: inline-block;

  padding: 15px;

  border-radius: 10px;

  text-align: center;
}

.feature-card-widget-2 .icon-bg-1 {
  background-color: rgba(41, 204, 37, 0.1);
}

.feature-card-widget-2 .icon-bg-2 {
  background-color: rgba(190, 99, 249, 0.1);
}

.feature-card-widget-2 .icon-bg-3 {
  background-color: rgba(252, 87, 59, 0.1);
}

.feature-card-widget-2 .icon-bg-4 {
  background-color: rgba(38, 198, 218, 0.1);
}

.feature-card-widget-2 h5 {
  margin: 15px 0;
}

.feature-card-widget-2 h4 {
  margin-bottom: 12px;

  margin-top: 18px;
}

.feature-card-widget-2 p {
  min-height: 72px;

  line-height: inherit;
}

.feature-card-widget-3 {
  padding: 25px;

  border-radius: 10px;

  transition: all 0.3s ease-out;

  overflow: hidden;

  position: relative;

  margin: 0 12px;

  outline: none;
}

.feature-card-widget-3 .shapes img {
  position: absolute;
}

.feature-card-widget-3 img {
  max-width: 100%;
}

.feature-card-widget-3 .title {
  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #fff;

  line-height: 22px;

  display: block;

  margin-top: 5px;
}

.feature-card-widget-3 h5 {
  font-size: 22px;

  color: #fff;

  margin-top: 13px;

  font-family: "Poppins", sans-serif;

  font-weight: 400;

  line-height: 30px;
}

.feature-card-widget-3 h5 span {
  font-family: "Poppins", sans-serif;

  font-weight: 600;
}

.feature-card-widget-3 a {
  font-size: 22px;

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 400;

  display: inline-block;

  line-height: 30px;
}

.feature-card-widget-3.card-1 {
  background-color: #f76363;
}

.feature-card-widget-3.card-1:hover {
  box-shadow: 0 20px 50px 0 rgba(247, 99, 99, 0.25);
}

.feature-card-widget-3.card-1 .shapes img:nth-child(1) {
  bottom: 0;

  right: 20px;

  animation: pulse 2s ease-out infinite alternate both;
}

.feature-card-widget-3.card-1 .shapes img:nth-child(2) {
  top: 0;

  right: 0;

  animation: pulse 3s ease-out infinite alternate both;
}

.feature-card-widget-3.card-1 .shapes img:nth-child(3) {
  top: 50%;

  right: 40%;
}

.feature-card-widget-3.card-1 .shapes img:nth-child(4) {
  bottom: 60%;

  right: 75%;
}

.feature-card-widget-3.card-2 {
  background-color: #40ad87;
}

.feature-card-widget-3.card-2:hover {
  box-shadow: 0 20px 50px 0 rgba(64, 173, 135, 0.25);
}

.feature-card-widget-3.card-2 .shapes img:nth-child(1) {
  top: 0;

  right: 20px;

  animation: pulse 6s ease-out infinite alternate both;
}

.feature-card-widget-3.card-2 .shapes img:nth-child(2) {
  bottom: 0;

  right: 0;

  animation: pulse 2s ease-out infinite alternate both;
}

.feature-card-widget-3.card-2 .shapes img:nth-child(3) {
  top: 50%;

  right: 40%;

  animation: moveX 13s ease-out infinite alternate both;
}

.feature-card-widget-3.card-2 .shapes img:nth-child(4) {
  bottom: 60%;

  right: 75%;

  animation: moveY 15s ease-out infinite alternate both;
}

.feature-card-widget-3.card-3 {
  background-color: #7080fa;
}

.feature-card-widget-3.card-3:hover {
  box-shadow: 0 20px 50px 0 rgba(112, 128, 250, 0.25);
}

.feature-card-widget-3.card-3 .shapes img:nth-child(1) {
  top: 0;

  right: 0;

  animation: pulse 2s ease-out infinite alternate both;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(2) {
  top: 0;

  right: 0;

  animation: pulse 3s ease-out infinite alternate both;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(3) {
  top: 20%;

  right: 40%;

  animation: moveX 13s ease-out infinite alternate both;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(4) {
  bottom: 20%;

  right: 20%;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(5) {
  bottom: 10%;

  right: 25%;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(6) {
  left: 10%;

  top: 15%;

  animation: moveY 13s ease-out infinite alternate both;
}

.feature-card-widget-3.card-3 .shapes img:nth-child(7) {
  left: 50%;

  top: 75%;

  animation: moveX 13s ease-out infinite alternate both;
}

.feature-card-widget-4 {
  padding: 50px 30px;

  border-radius: 10px;
}

.feature-card-widget-4 .theme-btn {
  border-color: rgba(0, 80, 178, 0.5);
}

.feature-card-widget-4 .social-button a {
  display: inline-block;

  text-align: center;

  height: 40px;

  width: 40px;

  border-radius: 50%;

  background-color: transparent;

  color: var(--p_color);

  line-height: 37px;

  border: 1px solid var(--p_color);

  margin-right: 15px;
}

.feature-card-widget-4 .social-button a:last-child {
  margin-right: 0;
}

.feature-card-widget-4 .social-button a:hover {
  border-color: var(--brand_color);

  background-color: var(--brand_color);

  color: #fff;
}

.feature-card-widget-5 {
  padding: 50px 40px;

  padding-bottom: 43px;

  text-align: left;

  border-radius: 8px;

  background: white;

  background-size: 100%;

  background-repeat: no-repeat;

  background-position: center;

  /* opacity: .1; */

  /* overflow: hidden; */
}

.feature-card-widget-5:hover {
  padding: 50px 40px;

  padding-bottom: 43px;

  text-align: left;

  border-radius: 8px;

  background-color: rgb(255, 255, 255);
}

.feature-card-widget-6 {
  display: flex;

  padding: 38px 40px;

  text-align: left;

  border-radius: 10px;
}

.feature-card-widget-6 img {
  max-width: inherit;
}

.feature-card-widget-6 h6 {
  font-size: 18px;

  color: var(--secondary_color);

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  line-height: 16px;
}

.feature-card-widget-7 {
  padding: 38px 30px 30px 30px;

  border-radius: 5px;
}

.feature-card-widget-7 h4 {
  margin-bottom: 13px;
}

/*----------------------------------------*/

/*        New Version

/*----------------------------------------*/

.feature-card-widget-8 {
  text-align: center;

  background-color: #f4f5f6;

  transition: all 0.3s ease;

  border-radius: 8px;

  padding: 50px 40px;
}

.feature-card-widget-8:hover {
  box-shadow: 0px 16px 60px 0px rgba(63, 93, 101, 0.2);

  background-color: #fff;
}

.feature-card-widget-8 img {
  max-width: 100%;
}

.feature-card-widget-8 h4 {
  font-size: 24px;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  margin-top: 26px;

  margin-bottom: 16px;
}

.feature-card-widget-8 p {
  font-family: "Roboto", sans-serif;

  font-weight: 400;

  font-size: 15px;

  color: var(--p_color);

  line-height: 26px;
}

/*========== saas-features- card area css ===========*/

.saas-feature-card {
  text-align: left;

  border-radius: 16px;

  background: #f7f9ff;

  padding: 40px 32px;
}

.saas-feature-card h4 {
  font-size: 22px;

  letter-spacing: -1px;
}

.saas-feature-card p {
  color: #878ba9;

  font-size: 18px;

  line-height: 28px;
}

.saas-feature-card .text-btn {
  margin-top: 40px;

  display: inline-block;
}

.saas-feature-card:hover {
  box-shadow: 0px 16px 60px 0px rgba(63, 74, 101, 0.2);
}

.saas-features-area {
  padding: 140px 0px;
}

.saas-features-img {
  border-radius: 16px;

  background: linear-gradient(180deg, #e7f2ff 0%, #f8fffd 100%);

  margin-right: 25px;

  padding-top: 38px;

  padding-right: 38px;
}

.saas-features-content {
  padding-left: 10px;
}

.saas-features-content .saas-section-title h2 span {
  background: linear-gradient(90deg, #6d81f8 45.35%, #f682b0 100%);

  -webkit-text-fill-color: transparent;
}

.features-icon-box .round_icon {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: linear-gradient(145deg, #32ebf6 0%, #6c67ff 100%);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-right: 16px;
}

.features-icon-box h4 {
  font-size: 18px;

  font-weight: 600;

  line-height: 1.1;

  margin-bottom: 12px;
}

.features-icon-box p {
  color: #878ba9;

  font-family: "Roboto", sans-serif;

  font-size: 18px;

  font-weight: 400;
}

.features-icon-box .text {
  flex: 1;
}

.features-icon-box.two .round_icon {
  background: linear-gradient(145deg, #ef9cfd 0%, #6687fe 100%);
}

.features-icon-box.feedback {
  margin-right: 50px;
}

.features-icon-box.feedback:not(:first-child):before {
  content: "";

  width: 1px;

  height: 100px;

  background: #878ba9;

  opacity: 0.5;

  position: relative;

  display: inline-block;

  margin-right: 50px;
}

.features-icon-box.feedback h4 {
  font-size: 52px;

  line-height: 1;
}

.saas-features-item:not(:last-child) {
  margin-bottom: 140px;
}

.saas-features-item.flex-row-reverse .saas-features-img {
  margin-right: 0;

  margin-left: 25px;

  padding-left: 38px;

  padding-right: 0;

  background: linear-gradient(145deg, #f5e9ff 0%, #f8fffd 100%);
}

.saas-features-item.flex-row-reverse .saas-features-content {
  padding-left: 0;
}

.saas-features-item.flex-row-reverse
  .saas-features-content
  .saas-section-title
  h2
  span {
  background: linear-gradient(90deg, #f98885 45.35%, #f0cc96 100%);

  -webkit-text-fill-color: transparent;
}

.app-showcase-area {
  padding: 140px 0px 110px;

  position: relative;

  overflow: hidden;

  z-index: 1;
}

.app-showcase-area .saas-section-title h2 span {
  background: linear-gradient(90deg, #4b57f6 45.35%, #2599e9 100%);

  -webkit-text-fill-color: transparent;
}

.app-showcase-item {
  border-radius: 16px;

  background: #dbecff;

  padding: 45px 32px 0px;

  position: relative;

  overflow: hidden;

  z-index: 1;

  margin-bottom: 30px;
}

.app-showcase-item .round {
  width: 670px;

  height: 670px;

  border-radius: 50%;

  position: absolute;

  z-index: -1;

  background: linear-gradient(135deg, rgba(199, 250, 254, 0) 0%, #fff 100%);

  opacity: 0.35;

  left: -40%;

  top: -56%;
}

.app-showcase-item img {
  max-width: 100%;

  margin: auto;

  /* box-shadow: 0px 7.5811514854px 18.952878952px 0px rgba(178, 187, 228, 0.5); */
}

.app-showcase-item h4 {
  font-weight: 500;

  font-size: 24px;

  letter-spacing: -0.24px;

  margin-bottom: 16px;

  color: #171d24;
}

.app-showcase-item p {
  color: #596c8d;

  font-family: "Roboto", sans-serif;

  font-size: 18px;

  margin-bottom: 38px;
}

.app-showcase-item .theme-btn {
  color: #1b2a52;

  font-family: "Poppins", sans-serif;
}

.app-showcase-item.box-two {
  background: linear-gradient(180deg, #fadfff 0%, #c3d1ff 100%);
}

.app-showcase-item.box-three {
  display: flex;

  padding: 45px 70px;

  /* background: linear-gradient(314deg, #2c3a62 0%, #374f8f 100%); */

  align-items: center;

  border: 5px solid #d9d9d919;
}

.app-showcase-item.box-three .app-text {
  padding-right: 70px;

  flex: 1;
}

.app-showcase-item.box-three h3 {
  font-size: 40px;

  color: #252525;

  line-height: 50px;

  font-weight: 600;

  letter-spacing: -0.4px;

  margin-bottom: 18px;
}

.app-showcase-item.box-three p {
  color: #403f3f;

  opacity: 0.89;
}

.app-showcase-item.box-three .img {
  text-align: right;

  position: relative;

  flex: 1;
}

.app-showcase-item.box-three .img img {
  box-shadow: none;
}

.app-showcase-item.box-three .img .app_shap_img {
  position: absolute;
}

.app-showcase-item.box-three .img .app_shap_img.one {
  left: -80px;

  bottom: 40px;
}

.app-showcase-item.box-three .img .app_shap_img.two {
  right: -50px;

  top: 40px;
}

.bank-fact-area {
  padding: 40px 0px;

  border-radius: 50px;
  padding-bottom: 20px;
}

.bank-fact-area .section-title .neo {
  font-size: 18px;

  color: #707070;
}

.fact-item {
  background: #ffffff;

  padding: 30px 15px;

  text-align: center;

  border-radius: 10px;

  transition: 0.3s;
  /* height: 490px; */
  margin-top: 20px;

  /* border: 2px solid #069f2d; */
}

.fact-item:hover {
  /* background: #f6fff1; */

  box-shadow: 0 0 30px #069f2c38;

  transform: translateY(-5px);
}

.fact-item .icon {
  width: 300px;

  /* height: 300px; */

  text-align: center;

  margin: auto;

  margin-bottom: 20px;
}

.fact-item .icon img {
  width: 100%;
  height: 350px;

  /* object-fit: cover; */
}

.fact-item .fact_heading {
  font-size: 20px;

  font-weight: 500;

  font-family: "Poppins", sans-serif;

  margin: 0;

  padding: 0;

  color: #058e40;
}

.fact-item p {
  color: #737476;

  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 26px;
}

.process-area {
  padding: 30px 0px;
}

.process-area .saas-feature-card {
  border-radius: 12px;

  background: #f6f6f6;

  margin-bottom: 20px;
}

.process-area .saas-feature-card .number {
  color: #0250b0;

  font-size: 36px;
}

.process-area .saas-feature-card .number img {
  width: 40px;

  /* height: 40px; */

  filter: brightness(0) saturate(100%) invert(29%) sepia(39%) saturate(6460%)
    hue-rotate(132deg) brightness(104%) contrast(95%);
}

.process-area .saas-feature-card h4 {
  font-size: 16px;

  margin: 8px 0 !important;

  /* background-color: gold; */
}

.process-area .feature-card-widget-8 {
  /* background-color: red; */

  padding: 10px 20px;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.process-area .saas-feature-card p {
  color: #737476;

  font-size: 16px;

  line-height: 150%;
}

.process-area .saas-feature-card:hover {
  background: var(--bs-white);
}

.integrate-area {
  padding: 50px;
  padding-bottom: 20px;
}

.integrate-area .bank-section-title h1 .underline-shape::after {
  background: var(--brand_color);
}

.integrate-area .saas-feature-card {
  background: #f6f6f6;

  margin-bottom: 30px;
}
.odersection li {
  background-color: #fafafa;
  border-radius: 10px;
  margin: 15px 0;
  padding: 10px 20px !important;

  box-shadow: 0px 5px 20px -10px #5ab47273;
}
.odersection li ul li {
  background-color: none;
  border-radius: 10px;
  margin: 0;
  padding: 5px 20px !important;
  box-shadow: unset;
  font-weight: 400;
  list-style: disc;
}
span.hworksub {
  text-align: justify !important;
}

.odersection li p {
  color: rgb(127, 127, 127) !important;
}

.integrate-area .feature-card-widget-8 {
  padding: 20px;
}

.integrate-area .saas-feature-card p {
  font-size: 17px;

  line-height: 24px;

  font-weight: 600;

  color: #141414;

  padding-top: 20px;
}

.integrate-area .saas-feature-card h6 {
  font-size: 19px;

  line-height: 24px;

  font-weight: 600;

  color: #058e40;

  padding-top: 10px;
}

.integrate-area .saas-feature-card h6 del {
  font-size: 16px;

  line-height: 24px;

  font-weight: 500;

  color: #aeaeae;

  padding-left: 8px;
}

.integrate-area .saas-feature-card .quickview {
  font-size: 16px;

  font-weight: 500;

  color: #ffffff;

  background: #04783b;

  padding: 10px 25px;

  margin-top: 10px;

  display: inline-block;

  border-radius: 30px;
}

/* =+++++++++++login page++++++++++++++ */

/* =+++++++++++login page++++++++++++++ */

/* =+++++++++++login page++++++++++++++ */

/* =+++++++++++login page++++++++++++++ */

/* =+++++++++++++++++++++++++ */

#sidebar {
  z-index: 9999 !important;

  background: #058e40 !important;
}

.loginform .form_container {
  width: fit-content;

  height: fit-content;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 25px;

  padding: 50px 20px 80px 20px;

  background: linear-gradient(to bottom, #49a250, #d5f9eb);

  background-size: cover;

  background-repeat: no-repeat;

  border-radius: 11px;

  font-family: "Inter", sans-serif;

  width: 100%;
}
.corporateform .form_container {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 20px;

  padding: 30px 30px 20px 30px;

  background: #f9fff8bb;

  backdrop-filter: blur(4px);

  border-radius: 0 10px 10px 0;

  font-family: "Inter", sans-serif;

  width: 100%;
}
.corporateform .text-light {
  font-size: 30px;
  color: black !important;
  font-weight: 600;
}
.corporateform .input_container {
  /* background-color: red; */
  padding: 5px 0;
}
.corporateform .input_container label {
  font-size: 14px;
  font-weight: 600 !important;
  color: #04783b !important;
  letter-spacing: 1px;
}
.corporateform .input_container input {
  border: 1px solid #04783b !important;
  height: 50px;
  color: black !important;
}
.corporateform .input_container input:focus {
  box-shadow: 0 0 6px rgba(7, 187, 91, 0.517);
  background: transparent !important;
  border: 1px solid #04783b !important;
}
.corporateform .title {
  font-size: 20px;
  color: #04783b !important;
}
.textareafrom {
  height: 80px !important;
  color: black !important;
  padding: 10px !important;
}
.corporateform .otpSubheading {
  font-size: 14px;
  color: black !important;
}

.loginform .logo_container {
  box-sizing: border-box;

  width: 80px;
}

.loginform .logo_container img {
  width: 100%;

  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2838%)
    hue-rotate(319deg) brightness(119%) contrast(99%);
}

.loginform .title_container {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 5px;
}

.loginform .title {
  margin: 0;

  font-size: 17px;

  font-weight: 700;

  color: #d0fcdb;
}

.loginform img {
  width: 100%;
}

.loginform .subtitle {
  font-size: 17px;

  max-width: 80%;

  text-align: center;

  line-height: 1.1rem;

  color: #8b8e98;
}

.loginform .input_container {
  width: 100%;

  height: fit-content;

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 5px;
  margin-bottom: 10px;
}

.loginform .icon {
  width: 30px;

  position: absolute;

  z-index: 99;

  left: 12px;

  bottom: 13px;
}

.loginform .input_label {
  font-size: 16px;

  color: #4a4a4a;

  font-weight: 600;
}

.input_field {
  padding-left: 15px !important;
}
.loginform .input_field {
  width: auto;

  height: 60px;

  padding: 0 0 0 15px;

  border-radius: 7px;

  outline: none;

  color: white;

  border: 1px solid #04783b;

  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));

  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}
::placeholder {
  font-weight: 200;
}

.loginform .input_field:focus {
  border: 2px solid #04783b !important;

  outline: unset !important;

  background-color: #fffefe57;
}

.loginform .sign-in_btn {
  width: 100%;

  height: 50px;

  border: 0;

  background: #04783b;

  border-radius: 7px;

  outline: none;

  color: #ffffff;

  cursor: pointer;

  font-weight: 400;
  padding: 5px 10px;
}

.loginform .sign-in_ggl {
  width: 100%;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  background: #ffffff;

  border-radius: 7px;

  outline: none;

  color: #242424;

  border: 1px solid #058e40;

  filter: drop-shadow(0px 1px 0px #efefef)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));

  cursor: pointer;
}

.loginform .separator {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 30px;

  color: #8b8e98;
  transform: translateY(-7px);
}

.loginform .separator .line {
  display: block;

  width: 100%;

  height: 1px;

  border: 0;

  background-color: #e8e8e8;
}

.loginform .note {
  font-size: 16px;

  color: #616161;

  text-decoration: underline;
  transform: translateY(-25px);
}

/* =+++++++++++++++++++++++++ */

/* =+++++++++++++++++++++++++ */

.integrate-area .viewall {
  display: flex;

  /* justify-content: center !important; */

  /* background-color: gold; */
}

.integrate-area .viewall .allview {
  font-size: 20px;

  font-weight: 600;

  color: #04783b;

  letter-spacing: 1px;

  border-radius: 30px;
}

.integrate-area .saas-feature-card:hover {
  box-shadow: 18.2094020844px 21.8512821198px 109.2564086914px 0px
    rgba(101, 90, 86, 0.2);

  background: var(--bs-white);
}

/*====== bank-card-area css  ======*/

.bank-card-area {
  background: #03045e;

  background: linear-gradient(30deg, #03045e, #520483);

  padding: 40px 0px;

  position: relative;
}

.bank-card-area .p1 {
  position: absolute;

  width: 250px;

  left: 0px;

  top: -17%;
}

.bank-card-area .p2 {
  position: absolute;

  width: 250px;

  bottom: -17%;

  right: -0px;
}

.bank-card-tab {
  border: 0px;
}

.bank-card-tab .nav-item {
  margin-bottom: 20px;
}

.bank-card-tab .nav-item .bank-card-item {
  text-align: left;

  border-radius: 8px;

  background: #191919;

  padding: 30px;

  border: 0px;

  position: relative;

  overflow: hidden;

  /* width: 500px; */
}

.bank-card-tab .nav-item .bank-card-item:before {
  content: "";

  position: absolute;

  width: 0;

  height: 4px;

  background: #116bd9;

  position: absolute;

  top: 0;

  left: auto;

  right: 0;

  background: var(--brand_color);

  transition: width 0.4s linear;
}

.bank-card-tab .nav-item .bank-card-item h5 {
  font-size: 18px;

  font-weight: 600;

  color: #5e5e5e;

  font-family: "Poppins", sans-serif;

  margin-bottom: 16px;
}

.bank-card-tab .nav-item .bank-card-item p {
  color: #afafaf;

  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 26px;

  opacity: 0.8;
}

.bank-card-tab .nav-item .bank-card-item.active {
  box-shadow: 0px 5px 70px 0px rgba(1, 33, 58, 0.03);

  background: #282828;
}

.bank-card-tab .nav-item .bank-card-item.active:before {
  width: 100%;

  right: auto;

  left: 0;
}

.bank-card-tab .nav-item .bank-card-item.active h5 {
  color: #fff;
}

.bank-card-tab .nav-item .bank-card-item.active p {
  color: #fff;

  opacity: 0.8;
}

.bank-card-tab .nav-item:nth-child(2) .bank-card-item:before {
  background: #d8b585;
}

.bank-card-tab .nav-item:nth-child(3) .bank-card-item:before {
  background: #7758cb;
}

.card-img .card_one {
  position: relative;

  z-index: 1;
}

.card-img .card_two {
  margin-top: -100px;

  z-index: 0;

  position: relative;
}

.bank-card-content .active .card_one {
  animation: fadeInUp 2s;
}

.bank-card-content .active .card_two {
  animation: fadeInUp 1s;
}

/*----------------------------------------*/

/*   Description CSS

/*----------------------------------------*/

.description-widget .desc-title {
  border-radius: 5px;

  padding: 10px;

  padding-right: 20px !important;

  width: 100%;

  /* background-color: red; */
}
.Description_box {
  border: 1px solid rgb(0, 154, 98);
  padding: 5px;
  padding-left: 10px;
  border-radius: 10px;
}
.cardprice {
  color: #04783b;
  padding: 5px 0;
}
.destext {
  margin: 0 !important;
}
.Description_box {
  border: 1px solid rgb(0, 154, 98);
  padding: 5px;
  padding-left: 10px;
  border-radius: 10px;
}
.Description_box2 {
  border: 1px solid #009a62;
  padding: 5px;
  padding-left: 10px;
  border-radius: 10px;
}
.Description_box2 p {
  font-size: 18px !important;
  font-weight: bold !important;
  color: black;
}
.shippin_thead {
  height: 50px;
  border-bottom: 1px solid cadetblue;
  padding: 10px;
  /* text-align: center; */
}

.shipping_card {
  width: 100%;
}
.shipping_card table {
  width: 100%;
}
.totalpriz td {
  border: unset !important;
  font-weight: bold !important;
  font-size: 20px !important;
}
.shipping_card td {
  padding: 10px 0;

  text-wrap: nowrap;
  font-size: 13px;
  border-bottom: 1px solid #00442441;
}

.buttonb a {
  background-color: rgb(0, 154, 98);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 15px 10px;
  font-weight: 500;
  color: white;
  border-radius: 30px;
}
.Description_box p {
  font-size: 15px !important;
  line-height: 150% !important;
  padding: 10px 0;
  color: black !important;
}
.description-widget .desc-title img {
  width: 100%;
}

.ritext {
  color: #04783b !important;
}
.description-widget .desc-title h2 {
  font-size: 36px;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  color: #fff;
}

.description-widget .desc-text p {
  font-size: 18px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);

  line-height: 30px;
}

/*----------------------------------------*/

/*   New Version

/*----------------------------------------*/

.services-area .table thead {
  font-family: "Poppins", sans-serif;

  font-size: 24px;

  font-weight: 600;

  line-height: 36px;

  letter-spacing: -0.01em;

  color: var(--black_900);
}

.services-area .table .feature-head {
  width: 38%;

  font-family: "Poppins", sans-serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 27px;

  color: var(--black_900);
}

.services-area .table .feature-item {
  width: 31%;

  text-align: center;

  vertical-align: middle;

  font-family: "Roboto", sans-serif;

  font-size: 18px;

  font-weight: 500;

  line-height: 21px;

  color: var(--black_850);
}

.services-area .table .feature-item .fa-check-circle {
  font-size: 20px;

  color: var(--brand_color);
}

.services-area .table .feature-item .fa-times-circle {
  font-size: 20px;

  color: #fe5151;
}

.services-area .table .feature-item .theme-btn {
  height: 80px;

  width: 100%;

  line-height: 80px;

  border-top-right-radius: 0px;

  border-top-left-radius: 0px;
}

.services-area .table .feature-item .theme-btn span {
  text-decoration: underline;
}

.services-area .table td,
.services-area .table th {
  padding: 27px 20px;
}

.services-area .table tbody tr:nth-child(even) > *:nth-child(odd) {
  background-color: #f4f5f6;
}

.services-area .table tbody tr:nth-child(even) > *:nth-child(even) {
  background-color: #e9e9ea;
}

.services-area .table tbody tr:nth-child(odd) > *:nth-child(odd) {
  background-color: #f9fdfe;
}

.services-area .table tbody tr:nth-child(odd) > *:nth-child(even) {
  background-color: #f4f5f6;
}

.services-area .stat-view {
  text-align: center;
}

.services-area .stat-view h1 {
  font-family: "Poppins", sans-serif;

  font-size: 52px;

  font-weight: 600;

  line-height: 66px;

  letter-spacing: -0.01em;

  color: var(-black_900);

  margin-bottom: 8px;
}

.services-area .stat-view p {
  font-family: "Roboto", sans-serif;

  font-size: 20px;

  font-weight: 400;

  line-height: 30px;

  color: var(--black_500);

  margin-bottom: 0;
}

.about-tab-area {
  padding-top: 5px;

  padding-bottom: 4px;
}

.about-tab-area .nav-tabs {
  margin: 0 0 15px;

  border: none;

  justify-content: center;

  -webkit-justify-content: center;

  border-bottom: 1px solid #dbdbdb32;

  /* background-color: red; */

  flex-wrap: nowrap;
}

.about-tab-area .nav-tabs .nav-item .nav-link {
  border: none;

  padding: 5px 10px;

  color: #808080;

  margin: 0 20px;

  font-family: "Roboto", sans-serif;

  font-size: 18px;

  font-weight: 500;

  line-height: 30px;

  border-bottom: 2px solid transparent;

  margin-bottom: -1px;
}

.about-tab-area .nav-tabs .nav-item .nav-link.active {
  color: #058e40;

  border-color: var(--brand_color);

  background: transparent;
}

.about-tab-area .tab-content .section-title img {
  margin: 16px 0;

  filter: brightness(0) saturate(100%) invert(24%) sepia(83%) saturate(3004%)
    hue-rotate(142deg) brightness(95%) contrast(96%);
}

.about-tab-area .tab-content .section-title h1 {
  margin-bottom: 16px;

  color: white;

  letter-spacing: 2px;
}

.about-tab-area .tab-content .section-title p {
  color: rgb(137, 137, 137);

  font-size: 18px;

  line-height: 200%;
}

.read-more {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--brand_color);

  position: relative;

  display: inline-block;

  margin-top: 30px;
}

.read-more::after {
  content: "";

  position: absolute;

  top: 100%;

  width: 0px;

  height: 1px;

  background-color: var(--brand_color);

  transition: all 0.3s ease-out;

  left: 0;
}

.read-more:hover {
  color: var(--brand_color);
}

.read-more:hover::after {
  width: 128px;
}

.read-more:hover i {
  transform: translateX(5px);
}

.read-more i {
  display: inline-block;

  font-size: 16px;

  vertical-align: middle;

  transition: all 0.3s ease-in-out;
}

.about-area .feature-list {
  margin-top: 24px;
}

.about-area .feature-list li {
  font-family: "Roboto", sans-serif;

  font-size: 18px;

  font-weight: 500;

  line-height: 28px;

  color: var(--black_800);

  margin-bottom: 15px;
}

.about-area .feature-list li i {
  font-size: 19px;

  color: var(--brand_color);

  margin-right: 12px;
}

.about-area .cash-img {
  position: relative;

  display: inline-block;
}

.about-area .cash-img .msg-1 {
  position: absolute;

  right: 25px;

  bottom: 235px;

  box-shadow: 0px 16.9638557434px 68.9156646729px 0px
    rgba(63, 93, 101, 0.2509803922);
}

.about-area .cash-img .msg-2 {
  position: absolute;

  left: -16px;

  bottom: 155px;

  box-shadow: 0px 16.2357940674px 65.9579086304px 0px
    rgba(63, 93, 101, 0.2509803922);
}

/*===== bank-app-showcase-area =====*/

.bank-app-showcase-area .bank-section-title .underline-shape:after {
  background: #f65ae7;
}

.bank-app-showcase-area .feature-list {
  padding-top: 22px;

  margin-top: 20px;
}

.bank-app-showcase-area .feature-list li {
  font-size: 18px;

  color: #737476;

  font-family: "Roboto", sans-serif;

  line-height: 28px;

  margin-bottom: 8px;
}

.bank-app-showcase-area .feature-list li i {
  color: var(--brand_color);

  margin-right: 10px;
}

.bank-app-showcase-area .theme-btn {
  border-radius: 30px !important;
}

.bank-app-showcase-area .theme-btn {
  border-radius: 30px !important;
}

.bank-app-showcase-area .imgsectiongif img {
  width: 100%;
}

.right-sidebar-widget .widget-content {
  background: var(--bs-white);
}

.right-sidebar-widget .widget-content ul li {
  line-height: 40px;
}

.right-sidebar-widget .widget-content ul li span {
  font-size: 16px;

  color: var(--p_color);
}

.right-sidebar-widget .widget-content ul li .name {
  font-family: "Roboto", sans-serif;

  font-weight: 500;

  color: var(--secondary_color);

  margin-right: 5px;
}

.right-sidebar-widget .widget-content ul li .value {
  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

.sticky_sidebar_widget {
  position: sticky;

  top: 90px;

  left: 0;
}

/*----------------------------------------*/

/*  New Version

/*----------------------------------------*/

.saas-faq-area {
  padding-bottom: 0px;
}

.faq_item {
  border-radius: 12px;
  border: 1px solid #04783b;
  padding: 6px 17px;
  margin-bottom: 9px;
  cursor: pointer;
  min-height: 40px;
}

.faq_item .faq-header h6 {
  font-size: 13px;

  line-height: 25px;

  font-weight: 500;

  position: relative;

  padding-right: 100px;
}

.faq_item .faq-header h6 i {
  position: absolute;

  right: -2px;

  top: 2px;

  font-size: 24px;

  color: var(--brand_color);

  opacity: 0;

  visibility: hidden;

  transition: all 0.2s linear;
}

.faq_item .faq-header h6 i + i {
  opacity: 1;

  visibility: visible;
}

.faq_item .faq-header h6.collapsed i {
  opacity: 1;

  visibility: visible;
}

.faq_item .faq-header h6.collapsed i + i {
  opacity: 0;

  visibility: hidden;
}

.faq_item p {
  font-size: 15px;

  font-family: "Roboto", sans-serif;

  color: var(--p_color);

  line-height: 28px;
}

.faq_item .faq-body {
  padding-right: 30px;

  padding-top: 8px;
}

.clients-logo-title {
  font-size: 24px;

  font-family: "Poppins", sans-serif;

  color: #878ba9;

  font-weight: 500;

  margin-bottom: 50px;

  text-align: center;
}

.clients-logo-title span {
  color: #1b2a52;
}

.clients-logo {
  opacity: 0.5;
}

.clients-logo:hover {
  opacity: 1;

  transform: scale(1.02);
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

/*----------------------------------------*/

/*  Call To Action CSS

/*----------------------------------------*/

.cta {
  background-position: center;

  background-size: auto;

  padding: 70px 110px 70px 100px;

  border-radius: 10px;

  position: absolute;

  z-index: 1;

  overflow: hidden;

  width: auto;

  bottom: 0;

  transform: translateY(50%);

  left: 15px;

  right: 15px;
}

.cta .shapes img {
  position: absolute;

  animation: pulse 1.5s ease-out infinite alternate both;
}

.cta .shapes img:nth-child(1) {
  right: 5%;

  bottom: 10%;

  animation-delay: 0.2s;

  animation: moveY 15s linear infinite alternate both;
}

.cta .shapes img:nth-child(2) {
  left: 25%;

  bottom: 0;

  animation: none;
}

.cta .shapes img:nth-child(3) {
  left: 50%;

  bottom: 0;
}

.cta .shapes img:nth-child(4) {
  top: 0%;

  right: 0;

  animation-delay: 0.8s;
}

.cta .shapes img:nth-child(5) {
  bottom: 0%;

  left: 0;

  animation-delay: 1.8s;
}

.cta .shapes img:nth-child(6) {
  top: 0%;

  left: 25%;

  animation: none;
}
.right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.right i{
 color: red;
}
.cta .bubbles div {
  height: 10px;

  width: 10px;

  border-radius: 50%;

  position: absolute;

  animation-duration: 15s;

  animation-iteration-count: infinite;

  animation-timing-function: linear;

  animation-direction: alternate;
}

.cta .bubbles div:nth-child(1) {
  bottom: 20%;

  left: 5%;

  animation-delay: 0.5s;

  animation-name: floatingBubble;

  background-color: rgba(255, 255, 255, 0.5);
}

.cta .bubbles div:nth-child(2) {
  bottom: 65%;

  left: 20%;

  animation-name: floatingBubble2;

  background-color: rgba(246, 166, 9, 0.5);
}

.cta .bubbles div:nth-child(3) {
  bottom: 15%;

  left: 30%;

  animation-delay: 1s;

  animation-name: floatingBubble;

  background-color: rgba(42, 199, 105, 0.5);
}

.cta .bubbles div:nth-child(4) {
  bottom: 50%;

  left: 40%;

  animation-delay: 0.8s;

  animation-name: floatingBubble2;

  animation-direction: alternate-reverse;

  background-color: rgba(255, 255, 255, 0.5);
}

.cta .bubbles div:nth-child(5) {
  bottom: 20%;

  right: 5%;

  animation-delay: 0.5s;

  animation-name: floatingBubble;

  background-color: rgba(246, 166, 9, 0.5);
}

.cta .bubbles div:nth-child(6) {
  bottom: 65%;

  right: 20%;

  animation-name: floatingBubble;

  background-color: rgba(255, 255, 255, 0.5);
}

.cta .bubbles div:nth-child(7) {
  bottom: 15%;

  right: 30%;

  animation-delay: 1.1s;

  animation-name: floatingBubble;

  background-color: rgba(42, 199, 105, 0.5);
}

.cta .bubbles div:nth-child(8) {
  bottom: 50%;

  right: 40%;

  animation-delay: 0.2s;

  animation-name: floatingBubble;

  background-color: rgba(255, 255, 255, 0.5);
}

.cta a {
  display: inline-block;

  margin: 0 10px;
}

@keyframes WingsOne {
  0% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.cta-content.text-black h2 {
  color: var(--secondary_color);
}

.cta-content.text-black p {
  color: var(--p_color);
}

.cta-content h2 {
  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 700;
}

.cta-content p {
  color: #fff;

  font-size: 18px;

  font-family: "Roboto", sans-serif;
}

.cta-content .theme-btn {
  font-size: 20px;

  height: 66px;

  line-height: 66px;

  padding: 0 50px;
}

.cta-content .cta-text-violet {
  color: #5816c5;
}

.cta-area-2 {
  background-color: #e9f5f3;
}

.help-cta {
  background-color: #d7f2fa;

  background-position: center;

  background-size: cover;
}

.help-cta p {
  color: var(--black_600);

  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

/* New Version */

.cta-4 {
  transform: translateY(0%);

  position: relative;

  z-index: 1;

  border-radius: 8px;

  /* box-shadow: 0 10px 0px  #a1cca5; */
}

.cta-4 .cta-content {
  position: relative;

  z-index: 1;
}

.cta-4 .cta-content h2 {
  font-family: "Poppins";

  font-size: 45px;

  font-weight: 600;

  line-height: 65px;

  letter-spacing: -0.02em;
}

.cta-4 .cta-content p {
  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 30px;
}

.cta-4 .cta-content .theme-btn {
  background-color: white !important;

  height: 60px;

  line-height: 57px;

  padding: 0 40px;

  color: #058e40;

  border-radius: 30px;
}

.cta-4 .cta-content .theme-btn::before {
  background-color: #000;
}

.cta-4 .form-control {
  border-color: var(--bs-white);

  padding: 0 20px;

  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);

  background-color: #fff;

  text-transform: lowercase;

  height: 60px;

  flex: 1;
}

.cta-4 .form-control::placeholder {
  font-size: 16px;

  font-family: "Inter";

  font-weight: 400;

  color: var(--p_color);

  text-transform: capitalize;
}

.cta-4 .feature-list {
  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 16px;
}

.cta-4 .feature-list i {
  color: #d7d7d7;

  font-size: 16px;

  margin-right: 7px;
}

.cta-4 .feature-list li {
  font-family: "Roboto";

  font-size: 16px;

  font-weight: 400;

  line-height: 26px;

  color: #fff;
}

.cta-4 .cta-img {
  position: absolute;

  right: 0;

  bottom: 0;

  z-index: -1;

  border-bottom-right-radius: 8px;
}

.cta-4 .shape {
  position: absolute;

  right: 0;

  bottom: 0;

  z-index: -2;

  border-bottom-right-radius: 8px;
}

.cta-area-3 {
  margin-top: -150px;
}

.cta-five {
  background: linear-gradient(30deg, #49a250, #31983d);

  border-radius: 26px;

  padding: 40px 100px 0px 80px;

  position: relative;

  z-index: 1;
}

.cta-six {
  background: linear-gradient(30deg, #2d56d3, #3155c1);

  border-radius: 26px;

  position: relative;

  z-index: 1;
}
.filter {
  filter: drop-shadow(0 0 15px #0a0a0a6e);
}
.cta-six:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/wave.webp) no-repeat scroll center 0 / cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.cta-five:before {
  content: "";

  width: 100%;

  height: 100%;

  background: url(../img/wave.webp) no-repeat scroll center 0 / cover;

  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 0;
}

.cta-five .cta-content {
  padding-top: 25px;
}

.cta-five .cta-content h2 {
  font-size: 52px;

  font-family: "Poppins", sans-serif;

  font-weight: 500;
}

.cta-five .cta-content p {
  font-size: 18px;

  opacity: 0.8;
}

.cta-five .cta-content .theme-btn {
  background: var(--brand_color);

  margin-top: 30px;
}
.successpage {
  width: 100%;
  min-height: 89vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.successpage .suc_content img {
  width: 200px;
  text-align: center;
}
.successpage .suc_content {
  text-align: center;
}
.successpage .suc_content .thankstext {
  font-style: italic !important;
  font-weight: 300;
  text-transform: capitalize;
}
/*----------------------------------------*/

/*  Why Choose Us Area CSS

  /*----------------------------------------*/

.why-choose-area {
  background-size: 100% 100%;
}

.why-choose-area .section-title h2 {
  color: black;
}

.why-choose-area .content-box {
  text-align: center;

  position: relative;

  padding: 40px 20px;

  overflow: hidden;

  border-radius: 10px;

  transition: 0.3s;

  background-color: #ffffff;

  box-shadow: 0 10px 40px rgba(9, 136, 132, 0.253);
}

.why-choose-area .content-box::after {
  position: absolute;

  content: "";

  width: 150px;

  height: 150px;

  border-radius: 50%;

  left: -50px;

  top: -50px;

  background-color: #d5f9eb;
}

.why-choose-area .content-box::before {
  position: absolute;

  background-color: #49a250;

  content: "";

  width: 150px;

  height: 150px;

  border-radius: 50%;

  left: -100px;

  top: -50px;

  z-index: 3;
}

.why-choose-area .content-box img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(6607%)
    hue-rotate(159deg) brightness(95%) contrast(97%);
}

.why-choose-area .content-box h4 {
  font-size: 24px;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  line-height: 30px;

  color: #000000;
}

.why-choose-area .content-box p {
  font-size: 17px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #434343;
}

/*----------------------------------------------------*/

/*----------------------------------------*/

/*   Contact  CSS

/*----------------------------------------*/

.contact-form-widget label {
  font-size: 16px;

  color: var(--secondary_color);

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  display: block;

  margin-bottom: 12px;
}

.contact-form-widget .form-control {
  background-color: transparent;

  height: 55px;

  color: #464646;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  border: 1px solid var(--brand_color);

  padding-right: 20px;

  padding-left: 20px;
}

.contact-form-widget .form-control::placeholder {
  color: #9199a1;

  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;
}

.contact-form-widget .form-control:focus {
  border-color: var(--brand_color);

  box-shadow: none;
}

.contact-form-widget textarea.form-control {
  height: inherit;
}

.contact-form-widget .policy-text {
  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);

  line-height: 22px;
}

/*----------------------------------------*/

/*   Get In Touch Area CSS

/*----------------------------------------*/

.get-touch-area .get-touch-box {
  display: flex;

  align-items: flex-start;
}

.get-touch-area .get-touch-box .icon {
  margin-right: 8px;
}

.get-touch-area .get-touch-box .icon img {
  vertical-align: text-top;
}

.get-touch-area .get-touch-box .icon i {
  font-size: 18px;

  color: var(--brand_color);
}

.get-touch-area .get-touch-box p {
  font-size: 16px;

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  color: var(--secondary_color);

  margin-bottom: 8px;

  line-height: 24px;
}

.get-touch-area .get-touch-box span {
  font-size: 14px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: var(--p_color);

  line-height: 22px;
}

.get-touch-area-2 {
  padding: 128px 0;

  background: url(../img/home-5/get-touch-bg.webp), #0e1520;

  background-position: right;

  background-repeat: no-repeat;

  background-size: initial;
}

.get-touch-area-2 h1 {
  font-size: 48px;

  font-weight: 600;

  line-height: 58px;

  letter-spacing: -0.02em;

  color: #fff;
}

.get-touch-area-2 p {
  font-family: "Roboto", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 30px;

  color: #eeeeee;

  margin-bottom: 0;
}

.get-touch-area-2 .consult-num {
  margin-top: 40px;

  display: flex;
}

.get-touch-area-2 .consult-num > div {
  width: 50%;
}

.get-touch-area-2 .consult-num h1 {
  font-size: 52px;

  font-weight: 500;

  line-height: 60px;

  color: #d1edf5;

  margin-bottom: 2px;
}

.get-touch-area-2 .consult-num p {
  line-height: 24px;

  color: #fff;
}

.get-touch-area-2 .touch-form {
  padding: 60px 48px;

  background-color: var(--bs-white);

  border-radius: 8px;
}

.get-touch-area-2 .touch-form h3 {
  font-size: 28px;

  font-weight: 500;

  line-height: 36px;

  margin-bottom: 40px;
}

.get-touch-area-2 .touch-form .form-control {
  border-radius: 4px;

  background-color: #f2f0ef;

  border-color: var(--black_50);

  height: 56px;

  line-height: 56px;

  margin-bottom: 16px;

  padding-left: 24px;
}

/*----------------------------------------------------*/

/*----------------------------------------------------*/

/*----------------------------------------*/

/*  Footer CSS

/*----------------------------------------*/

.footer {
  background-position: center;

  background-size: cover;

  /* copyright*/
}

.footer .footer-top .footer-text {
  color: #fff;

  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  line-height: 24px;
}

.footer .footer-top .social-icon a {
  color: #fff;

  margin: 10px;
}

.footer .footer-top .social-icon a:first-child {
  margin-left: 0;
}

.footer .footer-top .footer-widget .overline {
  font-size: 14px;

  display: block;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #fff;
}

.footer .footer-top .footer-widget .footer-bold {
  display: flex;

  align-items: flex-end;

  margin: 15px 0;
}

.footer .footer-top .footer-widget .footer-bold > span:nth-child(1) {
  font-size: 70px;

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  margin-bottom: 0;

  line-height: 68px;
}

.footer .footer-top .footer-widget .footer-bold > span:nth-child(2) {
  font-family: "Poppins", sans-serif;

  font-size: 24px;

  color: #fff;

  margin-bottom: 0;

  font-weight: 500;
}

.footer .footer-top .footer-widget .time {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #fff;
}

.f-widget-title {
  margin-bottom: 20px;

  font-size: 22px !important;
}

.footer .footer-top .footer-widget .f-widget-title h5 {
  font-size: 18px;

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  text-transform: capitalize;

  margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-link ul li a {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #d8dce0;

  border-bottom: 1px solid transparent;

  line-height: 40px;
}

.footer .footer-top .footer-widget .footer-link ul li a:hover {
  border-color: #fff;
}

.footer .copyright {
  color: #fff;
}

.footer .copyright .short-text a {
  font-size: 14px;
}

.footer .copyright .copyright-text.short-text p {
  font-size: 14px;

  color: #fff;
}

.footer .copyright .copyright-text p {
  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  color: #9199a1;
}

.footer .copyright a {
  display: inline-block;

  margin-left: 15px;

  font-size: 16px;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  padding: 10px 0;
}

.footer .copyright a:hover {
  color: #fff;
}

.footer .copyright a:first-child {
  margin-left: 0;
}

.footer .copyright .nice-select {
  background-color: transparent;

  border-color: transparent;

  color: #fff;

  margin: auto;

  padding-left: 0;
}

.footer .copyright .nice-select .list {
  top: inherit;

  bottom: 100%;

  border: 1px solid #fff;

  transform-origin: bottom center;
}

.footer .copyright .nice-select .list:hover .option:not(:hover) {
  background-color: #0f1123 !important;
}

.footer .copyright .nice-select .list .option {
  background-color: #0f1123;

  text-transform: capitalize;
}

.footer .copyright .nice-select .list .option:hover {
  background-color: #1d2038;
}

.footer .copyright .social-button a {
  display: inline-block;

  height: 40px;

  width: 40px;

  border-radius: 50%;

  border: 1px solid #fff;

  background-color: transparent;

  font-size: 16px;

  color: #fff;

  line-height: 19px;

  text-align: center;

  transition: all 0.3s ease-out;
}

.footer .copyright .social-button a:hover {
  background-color: #fff;

  color: var(--brand_color);
}

/*========== saas-footer-area css ========*/

.about-widget ul li {
  margin-bottom: 15px;

  font-size: 16px;

  color: #878ba9;

  font-family: "Roboto", sans-serif;

  font-weight: 400;

  line-height: 25px;
}

.about-widget ul li a {
  transition: color 0.2s linear;
}

.about-widget ul li a:hover {
  color: var(--brand_color);
}

.footer-link li {
  margin-bottom: 5px;

  /* background-color: red; */
}

.footer-link li a {
  font-size: 16px;

  color: #e6e8fa;

  font-weight: 400;

  font-family: "Roboto", sans-serif;

  transition: all 0.2s linear;
}

.footer-link li a:hover {
  color: var(--brand_color);
}

.bank-footer-area {
  background: #49a250;

  padding-bottom: 10px;
}

.bank-footer-area .footer_top {
  padding-top: 70px;

  padding-bottom: 20px;
}

.bank-footer-area .footer_top .f-widget img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(339deg) brightness(110%) contrast(103%);
}

.bank-footer-area .footer_top .f-widget-title {
  color: #fff;
}

.bank-footer-area .about-widget p {
  color: #e6e6e6;

  font-size: 16px;

  font-weight: 400;

  font-family: "Roboto", sans-serif;

  padding-right: 100px;

  margin-top: 5px;
}

.bank-footer-area .footer-link li a {
  color: rgb(229, 229, 229);
}

.bank-footer-area .footer-link li a:hover {
  color: #fff;

  text-decoration: underline;
}

.bank-footer-area .copyright-text a {
  font-size: 16px;

  font-weight: 400;

  color: #c1c1c1;

  font-family: "Roboto", sans-serif;

  margin-right: 30px;
}

.bank-footer-area .copyright-text a:hover {
  color: #fff;
}

.bank-footer-area .f-social a {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  text-align: center;

  line-height: 48px;

  background: #069f2d;

  color: white;

  display: inline-block;

  margin-left: 6px;
}

.bank-footer-area .f-social a:hover {
  color: var(--brand_color);

  background: #fff;
}

/* =============================== */
/* =============================== */
/* =============================== */
/* =============================== */
.tablogin {
  overflow: hidden;
}
.tabbtnn {
  border-bottom: 1px solid #04783b !important;
  display: flex;
  justify-content: space-between;
}
/* Style the buttons inside the tab */
.tabbtnn button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  background: unset;

  font-weight: 500;
  border: 1px solid #04783b !important;
  border-radius: 10px 10px 0 0;
  border-bottom: unset !important;
  width: 49%;

  /* background-color: #04783b; */
}

/* Change background color of buttons on hover */
.tablogin button:hover {
  color: #04783b;
}

/* =============================== */
/* =============================== */
/* =============corporate_dashboard================== */
/* =============================== */
/* =============================== */
.corporate_dashboard {
  width: 100%;
  overflow: hidden;
}

.coverimg img {
  width: 100%;

  height: 200px;
  object-fit: cover;
}
.profileimg {
  transform: translate(20px, -50px);
}
.profileimg img {
  width: 150px;
  height: 150px;
  border-radius: 50%;

  object-fit: cover;
  border: 2px solid #039C2D;
}

.corporate_dashboard_profilecon {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
}
.corporate_dashboard_profilecon svg {
  width: 15px;
  fill: #caeedb;
  fill: #039C2D;
  margin-right: 5px;
}

/* ============= */
#fixedDiv {
  width: 100%;
  z-index: 999;
}

.normal {
  position: relative;
}

.fixed {
  background: #039C2D !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 10px 0;
}
.fixed .nav-link {
  color: white !important;
  border-radius: 5px !important;
}
.fixed .nav-link.active {
  background: white !important;
  color: #039C2D !important;
}

.employee-item {
  background-color: rgb(253, 253, 253);
  border-radius: 10px;
  margin-bottom: 10px; /* Adds a 20px gap between each card */
  position: relative;
  padding: 10px;
 
}
.logoutsection{
  position: fixed;
  width: 100%;
  z-index: 99;
  left: 0;
  top: 0;
  background: #039C2D;
  display: flex;
  justify-content: end;
  padding: 10px;
}
.logoutsection .logoutbtn{
  padding: 10px 20px;
  background-color: white;
  color: #039C2D;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
}
.employee_item_con {
  /* padding: 10px; */
}

.bi-trash {
  font-size: 25px;
}
.employee_item_con h3 {
  font-size: 18px;
  color: #292929;
  font-weight: 600;
}

.addbtn {
  background: #039C2D;

  color: white;
  text-wrap: nowrap;
  border-radius: 4px;
  font-weight: 500;

  text-decoration: none !important;
  padding: 10px;
  font-size: 14px;
}
.addbtn:hover {
  background: #039C2D;

  color: white;
}
.cline {
  height: 1px;
  background-color: #ffffffa0;
}
#employeeDisplay {
  border-radius: 30px;
}
#employeeDisplay .employeeitem {
  display: flex;
  background-color: #e1f3e9;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  gap: 20px;
  margin-bottom: 10px;
  position: relative;
}
#employeeDisplay2 .employeeitem2 {
  display: flex;
  background-color: #feffff;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  gap: 7px;
  margin-bottom: 10px;
  position: relative;
}
.deleticon {
  position: absolute;
  background: #039C2D;
  padding: 10px;
  display: grid;
  right: 0;
  top: 0;
  place-content: center;
  border-radius: 0 10px 0px 15px;
  cursor: pointer;
  gap: 7px;
  border: 4px solid #fdfdfd;
  border-right: unset;
  border-top: unset;
}
.deleticon svg {
  fill: #fdfdfd;
  width: 15px;
  opacity: 1;
}

.employeeitem img,
.employeeitem2 img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  outline: 2px solid #039C2D;
  outline-offset: 3px;
  object-fit: cover;
  margin: 10px;
}
.card-body {
  padding: 0 !important;
}
.card-body > * {
  padding: 0;
  margin: 0;
}
.card-title {
  color: #039C2D;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 17px;
  margin: 0 !important;
}
.addbtn:focus {
  color: white !important;
}
.card-text {
  padding: 2px 0;
  font-size: 13px;
}
.card-text strong {
  color: #039C2D;
  font-size: 12px;
}
/* ======================== */
#employeeModal .form-control {
  border: 1px solid #039C2D;
  padding: 10px;
}

/* ================================= */
.chooseprofile label {
  width: 100%;
  margin-bottom: 20px;
}
.chooseprofile label input {
  display: none;
}
.chooseprofile label img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
}
.profileitem {
  border-radius: 10px;
  outline: 2px solid transparent;
  outline-offset: 3px;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.righticon {
  width: 100px !important;
  height: 100px !important;
  position: absolute;
  opacity: 0;
  transition: 0.5s 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.radio-input:checked + .profileitem {
  opacity: 1;
  outline: 2px solid #04783b;
}
.radio-input:checked + .profileitem .righticon {
  opacity: 1;
}

.addsocial {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quicktext {
  font-weight: 700;
  font-size: 18px;
}

.addbtn {
  background-color: #039C2D;
  padding: 10px 15px;
  border-radius: 5px;
}

.socialcard {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 10px #00000015;
  border: 1px solid #039C2D;
}

.socialcard img {
  width: 50px !important;
}
.socialcard [type="checkbox"]:checked {
  background-color: #039C2D !important;
  color: white;
}

/* ============left_side============== */
/* ============left_side============== */
/* ============left_side============== */
/* ============left_side============== */
/* ============left_side============== */
.left_side {
  position: relative;
  z-index: 999;
}
.left_side .nav-tabs {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;

 min-height: 100vh;

  position: fixed;
  width:15%;


  border: none;
}
.brandlogo{
   border-bottom: 1px solid rgb(227, 235, 242);
}
.tab-content {


  
  padding-top: 80px !important;
  padding: 10px;
  

 
}

.left_side .nav-tabs .nav-link {
  display: flex;
  background-color: unset;
  padding: 20px 10px !important;
  font-size: 16px;
  gap: 10px;
  color: #039C2D !important;

  /* color: #f9f5e5!important; */
  border: unset;

  /* border-left: 3px solid transparent; */
  border-bottom: 1px solid rgb(227, 235, 242);
  letter-spacing: 1px;
  font-weight: 500;
}
.left_side .nav-tabs a svg {
  width: 17px;
  fill: #039C2D;
}
.left_side .nav-link.active {
  border-radius: unset;
  background: linear-gradient(to right, #039C2D, transparent) !important;
  color: white !important;
  /* border-left: 4px solid #02d6fb !important; */
}
.left_side .nav-link.active svg {
  fill: white !important;
}

.register_img {
  width: 100%;
  height: 100%;
}
.redgstercor > * {
  padding-left: 0;
  padding-right: 0;
}
.redgstercor {
  background: url(../../webassets/img/redimg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 20px 50px #055d012c;

  border: 2px solid #ffffff35;
}
.register_img img {
  width: 100%;
  height: 100% !important;
}

.centerborder {
  border-right: 1px solid #e4f6e4;
  background-color: white;
  height: 100%;
}
.proinput .form-control {
  height: 50px;
  border: 1px solid #039C2D;
}
.proinput .input-group-text {
  border: 1px solid #039C2D;
  background-color: #039C2D;
  color: white;
}
.proinput .sbsb {

  background: unset;
  font-weight: 700;
  background-color: #039C2D;
color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 6px 10px #e4f6e4;
}

.ed h3 {
  color: #039C2D !important;
}
.ed h3 svg {
  fill: #039C2D !important;
}
.proinput .logoutbtn {
  background: #039C2D;
  color: white;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 20px;
  filter: grayscale(0);
 

}
.social_item{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
border-radius: 30px;
background-color: #e7f6fd;
margin-bottom: 10px;
font-weight: 600;


}
.social_item .sleft svg{
width: 30px;
fill: #039C2D;
margin-right: 10px;
}
.social_item .form-check-input {

height: 20px;
width: 35px;



}