@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@100..900&display=swap');
:root,
[data-bs-theme=light] {
  --primary:#000;
  --secondary:#f3f8f9 !important;
   --default-color: #444444;
  --accent:#000;
  --btncolor:#2487ce;
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #215C5C;
  --bs-primary-rgb: 33, 92, 92;
  --bs-primary-hover: #144B4B;
  --bs-primary-hover-rgb: 20, 75, 75;
  --bs-secondary: #CCE8C9;
  --bs-secondary-rgb: 204, 232, 201;
  --bs-heading-color: #16181B;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #fff;
  --nav-hover-color: #1f6bff;
  --dropdown-bg: #ffffff;
  --dropdown-color: #1f6bff;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
}

body {
  font: 0.9rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: #323232;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: #ffffff;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
   font-family: "Barlow Condensed", sans-serif;
}

.container {
  max-width: 1140px;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 60px;
  position: relative;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

.text-heading-color {
  color: var(--bs-heading-color);
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.list-checked {
  padding: 0;
  margin: 0;
  color: var(--bs-body-color);
}
.list-checked li {
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.list-checked li i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-primary);
  font-size: 20px;
}
.list-checked li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  content: "";
  vertical-align: -0.125em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5625rem 1.5625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}

.btn {
  padding: 12px 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 600;
  position: relative;
}
.btn:hover, .btn:active, .btn:focus {
  color: var(--bs-white);
  /* background-color: var(--bs-primary-hover) !important; */
  /* border: 1px solid var(--bs-primary-hover) !important; */
}
.btn.btn-white.hover-outline {
  background-color: var(--bs-white) !important;
  color: var(--bs-black) !important;
  border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
  color: var(--bs-white) !important;
  background-color: transparent !important;
  border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
  color: var(--inverse-color) !important;
  background-color: transparent;
}
.btn.btn-white-outline:hover, .btn.btn-white-outline:focus, .btn.btn-white-outline:active {
  background-color: transparent !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}

.block-squares {
  position: absolute;
  bottom: -12px;
  right: 0;
  z-index: 1;
  width: auto;
}

.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--bs-primary);
}

.a-link i {
  font-size: 26px;
  margin-left: 10px;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.a-link:hover i {
  margin-left: 15px;
}

.page-title {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
  background-color: rgba(var(--inverse-color-rgb), 0.03);
}

.special-link .icons {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons i {
  font-size: 25px;
  position: relative;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.special-link .icons i.icon-1 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link .icons i.icon-2 {
  opacity: 0;
  visibility: hidden;
  top: 80%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-1 {
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-2 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.fbs__net-navbar {
  position: absolute;
  top: 40px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 99999;
  width: 100%;
  background-color: #ffffff !important;
  border: none;
  border-radius: 30px;
  border-radius: 30px 30px 0 0;
}
@media (min-width: 992px) {
  .fbs__net-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fbs__net-navbar > .container {
  position: relative;
}
.fbs__net-navbar.relative {
  position: absolute;
}
.fbs__net-navbar .navbar-brand {
  color: var(--bs-white);
  font-size: 30px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  width: 20% !important;
}
.fbs__net-navbar .navbar-brand .logo.dark {
  display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
  display: block;
}
.fbs__net-navbar .navbar-nav > li > .nav-link {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 13px;
  padding-right: 13px;
  font-size: 1rem;
  color: rgba(var(--bs-white-rgb), 1);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link:before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 10px;
  background: rgb(36 135 206);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
    color: var(--inverse-color) !important;
  }
}
@media (max-width: 767.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link.active {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
  content: "";
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-menu {
  background-color: var(--nav-bg);
}
.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
  background-color: var(--dropdown-hover-bg) !important;
  color: var(--inverse-color);
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
  margin-left: 0.5rem;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background-color: var(--bs-black);
  color: var(--bs-white);
  border: none;
  display: none;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .fbs__net-navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fbs__net-navbar .navbar-brand {
  margin-right: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
  border: none !important;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    border: none;
  }
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
  font-size: 0.875rem;
  padding: 10px 10px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    display: block;
    -webkit-animation: fadeInUp 0.3s ease;
            animation: fadeInUp 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-animation: fadeInRight 0.3s ease;
            animation: fadeInRight 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
    -webkit-animation: fadeInLeft 0.3s ease;
            animation: fadeInLeft 0.3s ease;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav li.dropend > a .bi,
  .fbs__net-navbar .navbar-nav li.dropstart > a .bi {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: -10px;
  }
}
.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropend > a .caret {
  position: absolute;
  right: 10px;
}
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
  position: absolute;
  left: 10px;
}
.fbs__net-navbar .navbar-toggler:hover, .fbs__net-navbar .navbar-toggler:focus, .fbs__net-navbar .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.fbs__net-navbar .header-social a {
  /* -webkit-transition: 0.3s all ease; */
  /* transition: 0.3s all ease; */
  color: var(--bs-white);
  /* width: 30px; */
  /* height: 30px; */
  /* line-height: 30px; */
  /* text-align: center; */
  /* border-radius: 4px; */
  /* display: inline-block; */
  /* background-color: transparent; */
}
.fbs__net-navbar .header-social a:hover {
  background-color: rgba(var(--bs-white-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .header-social a {
    color: var(--bs-white);
  }
}
.fbs__net-navbar .header-social .btn {
  /* width: auto !important; */
  /* height: auto !important; */
  /* background-color: var(--bs-primary) !important; */
  color: var(--bs-white) !important;
}
@media (max-width: 575.98px) {
  .fbs__net-navbar .header-social .btn {
    display: none;
  }
}
.fbs__net-navbar.active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--nav-bg) !important;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.fbs__net-navbar.active .navbar-brand {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.active .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.active .nav-link {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .nav-link:hover {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--inverse-color);
}
.fbs__net-navbar.active .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar.active .header-social a {
    color: rgba(var(--inverse-color-rgb), 1) !important;
  }
}
.fbs__net-navbar.active .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: #1671b3 !important;
  color: var(--bs-white) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .fbs__net-icon-menu {
  display: block;
}
.fbs__net-navbar .fbs__net-icon-close {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
  display: block;
}
.fbs__net-navbar.dark {
  -webkit-box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
          box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
}
.fbs__net-navbar.dark .navbar-brand .logo.dark {
  display: inline-block;
  width: 60px;
}

.fbs__net-navbar.dark .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.dark a {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.dark a:hover {
  color: var(--inverse-color);
}
.fbs__net-navbar.dark .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.05);
}

.fbs__net-navbar.dark ul li a {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.dark ul li a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
  display: block;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
  display: none;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.hero__v6 {
  padding: 10rem 0 !important;
  background: var(--secondary);
}
.hero__v6 .hero-subtitle {
  background: color-mix(in srgb, var(--bs-secondary), transparent 70%);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero__v6 .hero-title {
  font-size: 48px;
}
@media (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-title {
    font-size: 30px;
  }
}
.hero__v6 .logos .logos-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--bs-primary), transparent 10%);
}

.hero__v6 .logos img {
  width: 140px;
}
.hero__v6 .hero-img {
  position: relative;
}
.hero__v6 .hero-img .img-main {
  position: relative;
  z-index: 9;
}
.hero__v6 .hero-img .img-card {
  z-index: 10;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
  position: absolute;
  max-width: 280px;
  bottom: -40px;
  left: -60px;
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 380px;
  }
}
@media (max-width: 575.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 280px;
  }
}

.features__v2 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  color: var(--bs-primary);
}

.features__v2 .content {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
}

.features__v2 .btn-play i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--bs-white);
  color: var(--bs-primary);
}

.subtitle {
  background-color: var(--secondary);
  color: var(--primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: normal;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about__v4 .features li .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.about__v4 .mission-statement {
  background-color: var(--primary);
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
  color: var(--bs-secondary);
}

.pricing__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.pricing__v2 .price-table {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.pricing__v2 .price-table .price {
  color: var(--bs-heading-color);
}
.pricing__v2 .price-table .price strong {
  font-size: 40px;
}
.pricing__v2 .price-table .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}
.pricing__v2 .popular {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.pricing__v2 .popular .price {
  color: var(--bs-secondary);
}
.pricing__v2 .popular h3 {
  color: var(--bs-white);
}
.pricing__v2 .popular p {
  color: var(--bs-white);
}
.pricing__v2 .popular .pricing-features h4 {
  font-size: 12px;
  color: var(--bs-secondary);
}

.howitworks__v1 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.howitworks__v1 .step-card {
  position: relative;
}
.howitworks__v1 .step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  font-size: 18px;
}
.howitworks__v1 .arch-line {
  position: absolute;
  top: 15px;
  width: 150px;
  right: 0;
  left: calc(100% + 24px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .howitworks__v1 .arch-line {
    display: none;
  }
}
.howitworks__v1 .arch-line.reverse {
  top: 20px;
}

.services__v3 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: var(--bs-primary) !important;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 0px;
  border-radius: 50%;
  background-color: rgba(var(--bs-secondary-rgb), 1);
}

.services__v3 .icon svg {
  width: 50px;
}
.services__v3 .service-card {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.faq__v2 {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.faq__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.faq__v2 .custom-accordion {
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-btn-icon: url("");
  --bs-accordion-btn-active-icon: url("");
}

.faq__v2 .custom-accordion .accordion-button {
  position: relative;
  padding-right: 50px;
}
.faq__v2 .custom-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  right: 20px;
  top: 15px;
  width: 18px;
  height: 14px;
  font-size: 30px;
  color: var(--inverse-color);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  line-height: 1;
  position: absolute;
  -webkit-font-smoothing: antialiased;
}

.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  content: "\f2ea";
}
.faq__v2 .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-heading-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--inverse-color);
  -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
          box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
  border-top: none;
}

.stats__v3 .content {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  overflow: hidden;
  position: relative;
}
.stats__v3 .content h3 {
  color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
  border: 1px solid var(--bs-secondary);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
  right: 20px;
  top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
  right: 40px;
  top: 40px;
}

.testimonials__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.testimonials__v2 .testimonial {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

.contact__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
  border-radius: 50%;
}

.footer {

  font-size: 15px; overflow: hidden;
}

.footer h2, .footer h3, .footer h4 {
  font-size: 20px;
}
.footer ul li {
  padding: 0;
  margin: 0 0 10px 0;
}
.footer a {
      color: #000;
      text-decoration: none;
      font-size: 14px;
}
.footer a:hover {
  color: var(--inverse-color);
}
.footer a .badge {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}
.footer a:hover .badge {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: var(--bs-white);
}
.footer .quick-contact i {
  color: var(--inverse-color);
}
.footer .credits {
  font-size: 13.5px;
}

#back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  width: 40px;
  height: 40px;
}
#back-to-top i {
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#back-to-top.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
/**CUSTOM*/
/* header::before {
    content: "";
    width: 400px;
    height: 100%;
    background-color: #fbfbfb;
    clip-path: polygon(0px 0px, 100% 0%, 82% 100%, 0% 100%);
    position: absolute;
    left: 27px;
    top: 0px;
    z-index: -1;
}
header::after {
    content: "";
    width: 365px;
    height: 100%;
    background-color: var(--rentol-white, #fff);
    clip-path: polygon(0px 0px, 100% 0%, 86% 100%, 0% 100%);
    position: absolute;
    left: 25px;
    top: 0px;
    z-index: -1;
} */
.navbar-nav{padding-left: 6rem !important;}
.header-top-four {
    height: 95px;
    background: var(--primary);
    z-index: 99999;
    display: block;
    position: relative;
}
.header-top-four-area-wrapper {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}.header-top-four-area-wrapper .social-area a {
    color: #000000;
    margin: 0 10px;
}.header-top-four-area-wrapper .mid-disc {
    margin: 0;
    color: #ffffff;
    margin-right: -160px;
    font-size: 14px;
}
.header-top-four-area-wrapper a
{
  font-size: 14px !important;
}
.vs-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--btncolor) !important;
    color: #ffffff;
    font-size: 15px !important;
    font-weight: normal !important;
    line-height: 1;
    padding: 5.5px 15px !important;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none !important;
    width: max-content;
    margin: auto;
}
.vs-btn:hover{
  border: none !important;
}
.vs-btn span{
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 7px;
  transition: 0.4s;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.vs-btn span::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background: rgb(22 113 179);
    border-radius: 50%;
}
.vs-btn:hover span {
    color: var(--secondary);
    transform: rotate(0deg);
    transition: 0.4s;
}
.vs-btn:before {
    transform: rotateX(90deg);
}
.vs-btn::after, .vs-btn::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #1671b3;
    transition: all ease 0.5s;
    z-index: -1;
    border-radius: inherit;
}.vs-btn:after {
    transform: rotateY(90deg);
}.vs-btn:hover:before {
    transform: rotateX(0);
}.vs-btn:hover:after {
    transform: rotateY(0);
}

.how-app-work-section .how-app-work-slider-content {
    position: relative;
}.how-app-work-section .how-app-work-slider-content img.circled-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.how-app-work-section .how-app-work-slider-wrapper {
    position: relative;
    width: 305px;
    height: 655px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: rgb(149 149 149 / 20%) 0px 18px 37px;
    overflow: hidden;
    border-radius: 50px;
}
.how-app-work-section .how-app-work-screen-mobile-image {
    background-image: url(../img/fature-moc.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: block;
    height: 655px;
    left: calc(50% + 0.5px);
    position: absolute;
    top: 0px;
    transform: translateX(-50%);
    width: 310px;
    z-index: 2;
}

.how-app-work-section .how-app-work-content-wrap {
    padding-left: 85px;
}.how-app-work-section .title {
    margin-bottom: 40px;
}.how-app-work-section .how-app-work-content {
    padding-top: 30px;
    padding-bottom: 45px;
    margin-bottom: 40px;
    position: relative;
}.how-app-work-section .how-app-work-content::before
 {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 45px;
    background: url(../img/gradient-sep.png) center center no-repeat;
}.how-app-work-section .pager-item {
    display: block;
    color: #323232;
}.how-app-work-section .single-how-app-work
 {
    padding-left: 10px;
    margin-bottom: 30px;
}.how-app-work-section .single-how-app-work .icon-box, .how-app-work-section .single-how-app-work .text-box {
    display: table-cell;
    vertical-align: middle;
}
.how-app-work-section .single-how-app-work .icon-box .inner {
    width: 74px;
    height: 74px;
    position: relative;
    text-align: center;
    background: linear-gradient(to right, rgb(248 248 248) 0%, rgb(235 235 235) 98%, rgb(233 233 233) 100%);
    border-radius: 50%;
}.how-app-work-section .single-how-app-work .icon-box .inner::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    opacity: 1;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: 0.4s;
}.how-app-work-section .pager-item.active .icon-box .inner::before {
    opacity: 0;
}
.how-app-work-section .single-how-app-work .icon-box .inner i {
    -webkit-text-fill-color: transparent;
    line-height: 74px;
    font-size: 44px;
    position: relative;
    background: linear-gradient(to right, rgb(101, 65, 193) 0%, rgb(212, 51, 150) 98%, rgb(212, 51, 150) 100%) text;
}
.how-app-work-section .pager-item.active .icon-box .inner i {
    color: rgb(255, 255, 255);
    -webkit-text-fill-color: rgb(255, 255, 255);
}.how-app-work-section .single-how-app-work .text-box
 {
    padding-left: 40px;
}.how-app-work-section .single-how-app-work .icon-box, .how-app-work-section .single-how-app-work .text-box {
    display: table-cell;
    vertical-align: top;
}.how-app-work-section .single-how-app-work .text-box h4 {
    font-size: 20px;
    color: rgb(21, 10, 51);
    font-weight: 500;
}.how-app-work-section .single-how-app-work .icon-box .inner:hover::before {
    opacity: 0;
}.how-app-work-section .single-how-app-work .icon-box .inner:hover
 {
    box-shadow: rgb(195 195 195 / 20%) 0px 18px 37px;
}
.how-app-work-section .single-how-app-work .icon-box .inner:hover i
 {
    color: rgb(255, 255, 255);
    -webkit-text-fill-color: rgb(255, 255, 255);
}

.bx-wrapper{position:relative;margin:0 auto 60px;padding:0;*zoom:1;-ms-touch-action:pan-y;touch-action:pan-y}.bx-wrapper img{max-width:100%;display:block}.bxslider{margin:0;padding:0}ul.bxslider{list-style:none}.bx-viewport{-webkit-transform:translatez(0)}.bx-wrapper{-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;box-shadow:0 0 5px #ccc;border:5px solid #fff;background:#fff}.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{position:absolute;bottom:-30px;width:100%}.bx-wrapper .bx-loading{min-height:50px;background:url(images/bx_loader.gif) center center no-repeat #fff;height:100%;width:100%;position:absolute;top:0;left:0;z-index:2000}.bx-wrapper .bx-pager{text-align:center;font-size:.85em;font-family:Arial;font-weight:700;color:#666;padding-top:20px}.bx-wrapper .bx-pager.bx-default-pager a{background:#666;text-indent:-9999px;display:block;width:10px;height:10px;margin:0 5px;outline:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:focus,.bx-wrapper .bx-pager.bx-default-pager a:hover{background:#000}.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager-item{display:inline-block;*zoom:1;*display:inline}.bx-wrapper .bx-pager-item{font-size:0;line-height:0}.bx-wrapper .bx-prev{left:10px;background:url(images/controls.png) no-repeat 0 -32px}.bx-wrapper .bx-prev:focus,.bx-wrapper .bx-prev:hover{background-position:0 0}.bx-wrapper .bx-next{right:10px;background:url(images/controls.png) no-repeat -43px -32px}.bx-wrapper .bx-next:focus,.bx-wrapper .bx-next:hover{background-position:-43px 0}.bx-wrapper .bx-controls-direction a{position:absolute;top:50%;margin-top:-16px;outline:0;width:32px;height:32px;text-indent:-9999px;z-index:9999}.bx-wrapper .bx-controls-direction a.disabled{display:none}.bx-wrapper .bx-controls-auto{text-align:center}.bx-wrapper .bx-controls-auto .bx-start{display:block;text-indent:-9999px;width:10px;height:11px;outline:0;background:url(images/controls.png) -86px -11px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:focus,.bx-wrapper .bx-controls-auto .bx-start:hover{background-position:-86px 0}.bx-wrapper .bx-controls-auto .bx-stop{display:block;text-indent:-9999px;width:9px;height:11px;outline:0;background:url(images/controls.png) -86px -44px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:focus,.bx-wrapper .bx-controls-auto .bx-stop:hover{background-position:-86px -33px}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{text-align:left;width:80%}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{right:0;width:35px}.bx-wrapper .bx-caption{position:absolute;bottom:0;left:0;background:#666;background:rgba(80,80,80,.75);width:100%}.bx-wrapper .bx-caption span{color:#fff;font-family:Arial;display:block;font-size:.85em;padding:10px}

.how-app-work-section .download-btn.active {
    margin-right: 15px;
}.how-app-work-section .download-btn.active, .how-app-work-section .download-btn:hover {
    -webkit-box-shadow: 0px 15px 30px rgba(212, 50, 151, 0.27);
    box-shadow: 0px 15px 30px rgba(212, 50, 151, 0.27);
}
.how-app-work-section .download-btn {
    display: inline-block;
    vertical-align: middle;
    background: #6541c1;
    background: -webkit-gradient(left top, right top, color-stop(0%, #6541c1), color-stop(98%, #d43396), color-stop(100%, #d43396));
    background: -webkit-gradient(linear, left top, right top, from(#6541c1), color-stop(98%, #d43396), to(#d43396));
    background: linear-gradient(to right, #6541c1 0%, #d43396 98%, #d43396 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6541c1', endColorstr='#d43396', GradientType=1);
    position: relative;
    padding: 12px 0;
    padding-left: 80px;
    border-radius: 28px;
    padding-right: 40px;
       
}
.how-app-work-section .download-btn.active:before, .how-app-work-section .download-btn:hover:before {
    opacity: 0;
}

.how-app-work-section .download-btn:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 28px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    
}.how-app-work-section .download-btn i.bi {
    font-size: 30px;
    background: -webkit-gradient(linear, left top, right top, from(#6541c1), color-stop(98%, #d43396), to(#d43396));
    background: linear-gradient(to right, #6541c1 0%, #d43396 98%, #d43396 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 35px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.how-app-work-section .download-btn.active i.fab, .how-app-work-section .download-btn.active span.avail, .how-app-work-section .download-btn.active span.store-name, .how-app-work-section .download-btn:hover i.fab, .how-app-work-section .download-btn:hover span.avail, .how-app-work-section .download-btn:hover span.store-name {
    color: #fff;
    -webkit-text-fill-color: #fff;
}.how-app-work-section .download-btn span.inner
 {
    position: relative;
    display: block;
}
[image-overlay]:before {
    position: absolute;
    content: '';
    background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
}.bg-image .background-image-wraper {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    opacity: 0;
}.bg-image .background-image-wraper:not([class*='col-']) {
    width: 100%;
}[image-overlay] *:not(.container):not(.background-image-wraper) {
    z-index: 2;
}.list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline-item
 {
    display: inline-block;
    width: 47%;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.btn-brand-02 {
   background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
     justify-content: center;
}.btn-rounded {
    border-radius: 10rem;
}
footer{
      /* background-color: #f1f7fc; */
      /* border-top: 1px solid
 color-mix(in srgb, rgb(22, 113, 179), transparent 75%); */
}
footer .logo{width: 60px;}
footer .sitename{font-size: 25px;text-transform: uppercase;}
footer .social_media {
    display: flex;
    margin-top: 20px;
}
footer .abt_side li {
    padding: 0px 0px 10px;
}
footer .social_media ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .social_media li a {
    display: block;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
    margin-right: 10px;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-radius: 50px;
    transition: 0.4s;
    width: 40px;
    height: 40px;
    background-color: transparent;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 4px;
    border: 2px solid
 color-mix(in srgb, #1671b3, transparent 85%);
    transition: 0.3s;
}
footer .social_media li a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}
footer .app_btn a {
    display: block;
    background-color: #fff;
    position: relative;
    width: 44%;
    text-align: center;
    padding: 12px 10px;
    /* border: 2px solid #efefef; */
    border-radius: 0.3rem;
    transition: 0.4s;
    box-shadow: 0px 10px 20px -4px rgba(145, 158, 171, 0.16);
}
footer .app_btn a.email{
  width: 90%;
    text-align: left;
    padding: 6px 10px;
}
footer .app_btn a img{
      filter: brightness(0) invert(0.3);
}
.vs-footer__title {
    font-size: 24px;
    position: relative;
    padding: 0 0 17px 0;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}
.vs-footer__title::after, .vs-footer__title::before {
    position: absolute;
    content: "";
    height: 2.5px;
    width: 65%;
    background-color: rgb(210 210 210 / 58%);
    left: 0;
    bottom: 0;
    text-transform: uppercase;
}
.vs-footer__title::after {
    width: 80px;
    background-color: var(--btncolor);
}
footer .bottom{background: transparent;
    border-top: #d3d6eb solid 1px;}
.section-space-sm-bottom{position: relative;}
.features.features-1 {
  padding-top: 110px;
  padding-bottom: 0;
  overflow: visible;
}
@media screen and (max-width:991.98px) {
  .features.features-1 {
    padding-top: 70px;
  }
}
.features.features-1 .note {
  margin-bottom: 60px;
}.bg-overlay-theme-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    content: "";
    z-index: 1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}.features .features-wrapper {
    position: relative;
    z-index: 5;
}.heading.heading-2 {
    margin-bottom: 60px;
}.heading .heading-subtitle {
    font-family: var(--global--font-body);
    text-transform: capitalize;
    color: var(--global--color-secondary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}.heading.heading-2 .heading-title {
    font-size: 40px;
    line-height: 55px;
}
.heading.heading-light .heading-title {
    color: var(--global--color-white);
}
.heading .heading-title
Specificity: (0,2,0)
 {
    font-family: var(--global--font-heading);
    text-transform: capitalize;
    font-size: 37px;
    line-height: 54px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0e204d;
}.heading.heading-light .paragraph {
    color: #858585;
    margin-bottom: 24px;
}.heading.heading-2 .heading-desc {
    color: #050a30;
    margin-bottom: 42px;
}.features .features-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}.features .features-holder {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 25px;
}.features .feature-panel {
  position: relative;
  padding: 40px 17px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  margin-bottom: 33px;
  background-color: #edf3f8;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 20px;
  background: color-mix(in srgb, #444444, transparent 97%);
}
.features .feature-panel:hover::before {
  /* -webkit-transform: translateX(-50%) scale(1); */
  -ms-transform: translateX(-50%) scale(1);
  /* transform: translateX(-50%) scale(1); */
}
.features .feature-panel:hover .feature-content h4 {
  /* margin-bottom: 6px; */
}

.features .feature-panel:hover .feature-icon {
    transform: rotateY(-180deg);
    transition: all 0.4s;

}
@media (min-width:992px) and (max-width:1199.98px) {
  .features .feature-panel {
    padding: 40px 15px 31px;
  }
}
@media screen and (max-width:991.98px) {
  .features .feature-panel {
    max-width: 200px;
    margin: 0 auto 33px;
  }
}
.features .feature-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
      -ms-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  height: 6px;
  width: calc(100% - 60px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: var(--global--color-primary);
}
.features .feature-panel .feature-icon {
  margin-bottom: 23px;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  display: inline-block;
  transition: all 0.4s;
  background: #e6edf3;
  border-radius: 50%;
  /* position: absolute; */
}
.features .feature-panel .feature-icon img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #113cac;
  font-size: 60px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.features .feature-panel .feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.features .feature-panel .feature-content h4 {
  font-family: var(--global--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 11px;
  color: #032359;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.features .feature-panel .feature-content p {
  text-align: center;
  font-family: var(--global--font-body);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #676767;
}
.features .feature-panel .feature-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border: 5px solid transparent;
  font-size: 13px;
  color: var(--global--color-white);
  background-color: var(--global--color-primary);
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-33px);
      -ms-transform: translateX(-50%) translateY(-33px);
          transform: translateX(-50%) translateY(-33px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.features .feature-panel .feature-link i {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.features .feature-panel.feature-panel-2 {
  height: 292px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
          box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
  padding-top: 50px;
  padding-bottom: 42px;
  margin-bottom: 0px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.features .feature-panel.feature-panel-2:hover {
  background-color: var(--global--color-secondary);
}
.features .feature-panel.feature-panel-2:hover .feature-icon i {
  color: var(--global--color-white);
}
.features .feature-panel.feature-panel-2:hover .feature-content h4 {
  color: var(--global--color-white);
}
@media screen and (min-width:992px) {
  .features .feature-panel.feature-panel-2 {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width:991.98px) {
  .features .feature-panel.feature-panel-2 {
    max-width: unset;
    margin: 0 auto;
    height: auto;
    min-height: 190px;
  }
}
.features .feature-panel.feature-panel-2::before {
  content: unset;
}
@media screen and (min-width:992px) {
  .features .feature-panel.feature-panel-2 .feature-content {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.features .feature-panel.feature-panel-2 .feature-content h4 {
  margin-bottom: 0;
}.features.features-1 .note {
    margin-bottom: 60px;
}
.note {
    text-align: center;
}.features .features-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    transform: translateY(90px);
    margin-top: -90px;
}@media screen and (min-width: 992px) {
    .features .features-cards {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}@media screen and (min-width: 992px) {
    .features .features-cards .card-panel {
        -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    }
}
.features .features-cards .card-panel {
    position: relative;
    -webkit-box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
    padding: 30px;
}
.features .features-cards .card-panel .card-content
{
  position: relative;
  z-index: 9;
}
.features .features-cards .card-panel .card-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}.features .features-cards .card-panel.card-left .card-img::before {
    background-color: rgb(250 250 250);
}
.features .features-cards .card-panel .card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(250 250 250);
    z-index: 1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}.features .features-cards .card-panel .card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}.features .features-cards .card-panel.card-left .card-img::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 205, 250, 0)), color-stop(0%, rgba(29, 101, 185, 0)), color-stop(24.43%, rgba(29, 101, 185, 0)), color-stop(97.66%, #0badf6), to(#0badf6));
    background-image: -o-linear-gradient(rgba(40, 205, 250, 0) 0%, rgba(29, 101, 185, 0) 0%, rgba(29, 101, 185, 0) 24.43%, #0badf6 97.66%, #0badf6 100%);
    background-image: linear-gradient(rgba(40, 205, 250, 0) 0%, rgba(29, 101, 185, 0) 0%, rgba(29, 101, 185, 0) 24.43%, #ffffff 97.66%, #ffffff 100%);
    /* z-index: -1; */
}.features .features-cards .card-panel .card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 205, 250, 0)), color-stop(0%, rgba(29, 101, 185, 0)), color-stop(24.43%, rgba(29, 101, 185, 0)), color-stop(97.66%, #0857de), to(#0857de));
    background: -o-linear-gradient(rgba(40, 205, 250, 0) 0%, rgba(29, 101, 185, 0) 0%, rgba(29, 101, 185, 0) 24.43%, #0857de 97.66%, #0857de 100%);
    background: linear-gradient(rgba(40, 205, 250, 0) 0%, rgba(29, 101, 185, 0) 0%, rgba(29, 101, 185, 0) 24.43%, #ffffff 97.66%, #ffffff 100%);
    z-index: 2;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.features .feature-icon img{width: 65px;}
/* .how-app-work-section{
      margin-top: 15%;
} */
 .elements33 {
    position: absolute;
    left: -30px;
    top: -30px;
    z-index: -1;
}
.keyframe5 {
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}
@keyframes animation-7 {
  0% {
    transform: rotate(0);
}
100% {
    transform: rotate(-1000deg);
}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: var(--secondary);
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  /* min-height: 275px; */
  margin-bottom: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 50px;
  border-radius: 50%;
  margin: -25px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
  display: block;
  height: 50px;
  background: #efefef;
  line-height: 50px;
  text-align: center;
  font-size: 22px;
  /* color: #fff; */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color:  color-mix(in srgb, rgb(197 197 197), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid rgb(22, 113, 179);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(22, 113, 179);
}
 .contact-boxarea {
    padding-top: 32px;
    border-top: 1px solid rgba(16, 2, 53, 0.05);
    position: relative;
    z-index: 1;
}
.contact-boxarea::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    transition: all 0.4s;
    background: rgba(16, 2, 53, 0.05);
    top: 0;
    left: 38%;
}
.contact-boxarea .cta-author-area {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    transition: all 0.4s;
    border-radius: 8px;
}
.contact-boxarea .cta-author-area .icons {
    height: 60px;
    width: 60px;
    display: inline-block;
    transition: all 0.4s;
    background: #EFF1FF;
    transition: all 0.4s;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
}.space16 {
    height: 16px;
}.space18 {
    height: 18px;
}
 .contact-boxarea .cta-author-area .text p {
    color: #3d3d42;
      font-style: normal;
    line-height: 16px;
}
 .contact-boxarea .cta-author-area .text span {
    color: #3d3d42;
    font-style: normal;
    line-height: 24px;
    display: inline-block;
    transition: all 0.4s;
    font-size: 20px;
    font-weight: bold;
}
.contact-form{
  border-radius: 8px;
  background: #f3f3f3;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  position: relative;
  z-index: 1;
  padding: 32px;
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  /* box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  background: #fff;
  border: 1px solid #E6E5FF;
  border-radius: 10px;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 35px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: rgb(22, 113, 179);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: rgb(22, 113, 179);
}

.faq .faq-container .faq-item .faq-content {
  /* display: grid; */
  /* grid-template-rows: 0fr; */
  transition: 0.3s ease-in-out;
  /* visibility: hidden; */
  opacity: 0;
  height: 0;
  font-size: 14px;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: rgb(22, 113, 179);
  width: 30px;
  height: 30px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: rgb(22, 113, 179);
}

.faq .faq-container .faq-active h3 {
  color: var(--primary);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  /* padding-bottom: 20px; */
  height: 100%;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: rgb(22, 113, 179);
}
.call-to-action-2{
    background: var(--secondary);
}
.breadcrumb-bg {
  background-image: url(../img/blur-m.png);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 50px;
  /* filter: blur(4px); */
}

.rts-breadcrumb-area {
  padding-top: 115px;
  padding-bottom: 75px;
}
.rts-breadcrumb-area p{color: #7e7e7e;}
.rts-breadcrumb-area::before{
   position: absolute;
   content: "";
   background-image: url('../img/banner-grid-shape.webp');
   background-repeat: repeat;
   height: 100%;
   width: 100%;
   opacity: 0.9;
   top: 0;
   /* filter: blur(15px); */
}
.rts-breadcrumb-area::after{
  position: absolute;
  /* content: ""; */
  background-image: url(../img/04.png);
  height: 100%;
  width: 165px;
  background-size: cover;
  right: 0px;
  bottom: 0px;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .contact-boxarea .cta-author-area{
    text-align: center;
  }
  .contact-boxarea::after{display: none !important;}
  .navbar-nav{padding-left: 0px !important;}
  .offcanvas-header-logo,.list-inline-item{width: 100%;}
  .fbs__net-navbar .navbar-brand,.offcanvas-header-logo .logo-link {
    align-items: center;
    display: flex;
  }
  .fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark{
    width: 90px;
  }
.header-top-four-area-wrapper .mid-disc{margin-right: 0;}
  .header-top-four-area-wrapper{
    justify-content: center;
  }
  .header-top-four-area-wrapper .end-part{
    display: none;
  }
  .rts-breadcrumb-area {
    padding: 25px 0;
  }
}
.rts-breadcrumb-area .title {
  color: #0b0b0b;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .rts-breadcrumb-area .title {
    font-size: 30px;
  }
}
.rts-breadcrumb-area .bread-tag {
  display: flex;
  /* align-items: self-end; */
  /* padding: 12px 30px; */
  /* background: #ededed; */
  border-radius: 31px;
  /* box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05); */
  max-width: max-content;
  /* margin-left: auto; */
}
@media only screen and (max-width: 767px) {
  .rts-breadcrumb-area .bread-tag {
    /* margin: auto; */
    margin-top: 30px;
  }
}
.rts-breadcrumb-area .bread-tag a {
  margin-right: 5px;
  font-weight: normal;
  color: var(--primary);
}
.rts-breadcrumb-area .bread-tag a.active {
  margin-left: 5px;
  color: #777777;
  margin-right: 0;
}
.rts-breadcrumb-area .bread-tag span {
  color: var(--color-primary);
}
.breadcrumb-1{position: relative;}
.banner-1__froster-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    inset: 0px;
}.banner-1__froster-svg-path {
    animation: 20s linear 0s infinite alternate none running animateFill;
}
@keyframes animateFill {
  0% {
    fill: var(--bs-primary);
    fill-opacity: 0.35;
}
25% {
    fill: var(--bs-danger);
    fill-opacity: 0.5;
}

50% {
    fill: var(--bs-success);
    fill-opacity: 0.7;
}
100% {
    fill: var(--bs-warning);
    fill-opacity: 0.5;
}
}
.centred {
    text-align: center;
} 
.lower-box .single-item {
    position: relative;
    display: block;
    padding: 0;
}.lower-box .single-item h3 {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 11px;
    padding-left: 34px;
}
.lower-box .single-item h3:before {
    position: absolute;
    content: "";
    background-image: url(../img/icon-47.0a8e1f98.png);
    width: 24px;
    height: 30px;
    left: 0;
    top: 1px;
    background-repeat: no-repeat;
}
.bg-shape-blur-m {
    height: 1160px;
    width: 1160px;
    background-image: url(../img/blur-m.png);
}
.nk-shape {
    position: absolute;
    z-index: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}.translate-middle-x {
    transform: translateX(-50%) !important;
}
.start-50 {
    left: 50% !important;
}.top-0 {
    top: 0 !important;
}
.overflow-hidden{
  overflow: hidden;
}
.top-35{
      top: -35% !important;
}
.pointer-none {
    pointer-events: none;
}
.z-n1 {
    z-index: -1 !important;
}
.translate-middle-x {
    transform: translateX(-50%) !important;
}
.start-50 {
    inset-inline-start: 50% !important;
}
.bottom-0 {
    inset-block-end: 0 !important;
}
.position-absolute {
    position: absolute !important;
}
.end-0 {
    inset-inline-end: 0 !important;
}
.list {
    --direction: column;
    display: flex;
    flex-direction: var(--direction);
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.list-row
 {
    --direction: row;
}
.list-dot--md {
    --dot-size: 0.75rem;
}
.list-dot--secondary-emphasis {
    --dot-clr: var(--bs-secondary-text-emphasis);
}
.list-dot > li + li {
    padding-inline-start: var(--dot-size);
    margin-inline-start: var(--dot-size);
    position: relative;
    isolation: isolate;
}
.list-dot > li + li::before
 {
    content: "";
    width: calc(var(--dot-size) / 2);
    height: calc(var(--dot-size) / 2);
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 0px;
    transform: translate(-50%, -50%);
    background-color: var(--dot-clr);
    border-radius: 50%;
}
.text-primary-subtle {
    color: var(--bs-primary-bg-subtle) !important;
}
.bg-primary-emphasis {
    background-color: var(--bs-primary-text-emphasis) !important;
}
.btn-sm.btn-icon {
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.5rem;
    align-items: center;
    justify-content: center;
}.btn-light-subtle {
   line-height: 35px;
   background: #fff !important;
   border: #d7d7d7 solid 1px;
   width: 35px;
   height: 35px;
   padding: 0;
}
/* Hero 2 */
.hero-2 {
    padding-block-start: clamp(6rem, 13.89vw + 1rem, 16.5rem);
    padding-block-end: clamp(6rem, 10.52vw + 1rem, 12.5rem);
    background-image: url(../img/hero-2-bg-shape.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    padding-top: 150px;
}
.hero-2::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 12.5rem;
    background-color: var(--bs-body-bg);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}
.hero-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    height: 12.5rem;
    background-color: var(--bs-body-bg);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}
@media (min-width: 1600px) {
    .hero-2__content {
        max-width: 1600px;
        margin-inline: auto;
    }
}
.hero-2__outer {
    display: inline-block;
    position: relative;
    isolation: isolate;
}
.hero-2__inner {
    width: 17.5rem;
    height: 17.5rem;
    max-width: 100%;
    border-radius: 50%;
    position: relative;
    isolation: isolate;
}
.hero-2__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bs-body-bg);
    border-radius: 50%;
    z-index: -1;
}
.hero-2__inner::after {
    content: "";
    position: absolute;
    inset: -1px;
    background-image: linear-gradient(0deg, var(--bs-body-bg), var(--bs-primary));
    border-radius: 50%;
    z-index: -2;
    animation: rotate360 5s linear infinite;
}
.hero-2__core {
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 50%;
    background-color: var(--bs-body-bg);
    position: relative;
}
.hero-2__core::after {
    content: "";
    position: absolute;
    inset: -1px;
    background-image: linear-gradient(var(--bs-body-bg), var(--bs-primary));
    border-radius: 50%;
    z-index: -1;
    animation: rotate360 5s linear infinite;
}
.hero-2__line-1 {
    display: none;
}
@media (min-width: 992px) {
    .hero-2__line-1 {
        display: inline-block;
        max-width: 100%;
        position: absolute;
        bottom: 50%;
        right: 100%;
        transform: translateY(25%);
        z-index: -3;
    }
}
.hero-2__line-2 {
    display: none;
}
@media (min-width: 992px) {
    .hero-2__line-2 {
        display: inline-block;
        max-width: 100%;
        position: absolute;
        top: 50%;
        right: 100%;
        transform: translateY(-25%);
        z-index: -3;
    }
}
.hero-2__line-3 {
    display: none;
}
@media (min-width: 992px) {
    .hero-2__line-3 {
        display: inline-block;
        max-width: 100%;
        position: absolute;
        bottom: 50%;
        left: 100%;
        transform: translateY(25%);
        z-index: -3;
    }
}
.hero-2__line-4 {
    display: none;
}
@media (min-width: 992px) {
    .hero-2__line-4 {
        display: inline-block;
        max-width: 100%;
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-25%);
        z-index: -3;
    }
}
.hero-2__images {
    display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .app_btn a img{
      width: 95px;
    }
    .footer a{font-size: 13px;}
}
@media (min-width: 992px) {
    .hero-2__images {
        display: inline-block;
        position: absolute;
        transform: scale(0.5);
        z-index: -1;
    }
    
}
@media (min-width: 1200px) {
    .hero-2__images {
        transform: scale(0.75);
    }
}
@media (min-width: 1400px) {
    .hero-2__images {
        transform: scale(1);
    }
}
@media (min-width: 992px) {
    .hero-2__images-1 {
        top: 20%;
        left: 0%;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-1 {
        top: 10%;
    }
}
@media (min-width: 992px) {
    .hero-2__images-2 {
        top: 25%;
        left: -5%;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-2 {
        left: 0;
        z-index: -2;
    }
}
@media (min-width: 992px) {
    .hero-2__images-3 {
        top: 45%;
        left: 0;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-3 {
        top: 50%;
    }
}
@media (min-width: 992px) {
    .hero-2__images-4 {
        top: 20%;
        right: 0%;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-4 {
        top: 10%;
    }
}
@media (min-width: 992px) {
    .hero-2__images-5 {
        top: 25%;
        right: -5%;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-5 {
        right: 0;
        z-index: -2;
    }
}
@media (min-width: 992px) {
    .hero-2__images-6 {
        top: 45%;
        right: 0;
    }
}
@media (min-width: 1200px) {
    .hero-2__images-6 {
        top: 50%;
    }
}
.hero-2__brand-section {
    padding-block-start: clamp(6rem, 10.52vw + 1rem, 12.5rem);
}
[data-bs-theme=dark] .hero-2 {
    background-image: url(../img/hero-2-bg-shape-dark.webp);
}
.gsap-text-animation span
{
  background-color: var(--btncolor) !important;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 20px;
  opacity: 0.2;
}
.check-main-wrapper {
    display: block;
    margin-bottom: 50px;
}
.check-main-wrapper .single-check {
    display: flex
;
    align-items: center;
    gap: 25px;
    margin: 10px 0;
}
.about-image-thu-5 {
    display: flex
;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}.small-image-area {
    display: flex
;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}.small-image-area .small-image {
    border-radius: 22px;
    display: flex
;
    align-items: center;
    padding: 9px 18px;
    background: #F6F6F6;
    gap: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}.small-image-area .small-image p {
    color: #083A5E;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.small-image-area .image-author-language {
    display: flex
;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}
.small-image-area .image-author-language span {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}
.brand-area-start{background-color: #fff;}

/** beneficiaries-section **/

.beneficiaries-section{
  position: relative;
}

.beneficiaries-section .title-box{
  position: relative;
  display: block;
  margin-top: -6px;
}

.beneficiaries-section .title-box p{
  margin-top: 10px;
}

.beneficiaries-section .tab-btns li{
  position: relative;
  display: block;
}

.beneficiaries-section .sec-title{
  margin-bottom: 36px;
}

.beneficiaries-section .tab-btns .tab-btn{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-family: 'Barlow Condensed';
  color: #6e6e6e;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 26px;
  padding-left: 30px;
  transition: all 500ms ease;
  text-transform: uppercase;
}

.beneficiaries-section .tab-btns .tab-btn:last-child{
  margin-bottom: 0px;
}

.beneficiaries-section .tab-btns .tab-btn.active-btn{
  color: #0d0b15;
}

.beneficiaries-section .tab-btns .tab-btn:before{
  position: absolute;
  content: "\f107";
  font-family: 'flaticon';
  font-size: 18px;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.beneficiaries-section .tab-btns .tab-btn.active-btn:before{
  transform: scale(1,1);
}

.beneficiaries-section .tabs-content .content-box{
  position: relative;
  display: block;
  background: -webkit-linear-gradient(-90deg, #f9f9f9 30%, var(--secondary) 100%);
  padding: 42px 50px 50px 50px;
  border-radius: 10px;
}

.beneficiaries-section .tabs-content .content-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.beneficiaries-section .tabs-content .content-box h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.beneficiaries-section .tabs-content .content-box h3{
  text-transform: uppercase;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  /* color: #fff; */
  margin-bottom: 23px;
}

.beneficiaries-section .tabs-content .content-box p{
  color: #948fa7;
  margin-bottom: 32px;
}

.beneficiaries-section .tabs-content .content-box .feature-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.beneficiaries-section .tabs-content .content-box .feature-list li span{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Space Grotesk', sans-serif; */
  color: #837b8e;
  font-weight: normal;
  background: #fff;
  padding: 11px 15px 11px 45px;
  border-radius: 5px;
}

.beneficiaries-section .tabs-content .content-box .feature-list li span:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  left: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}

.beneficiaries-section .tabs-content .content-box .feature-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  /* font-family: 'Space Grotesk', sans-serif; */
  color: #837b8e;
  font-weight: normal;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  text-align: center;
  padding: 10px 15px 10px 45px;
}

.beneficiaries-section .tabs-content .content-box .feature-list li a:before {
  position: absolute;
  content: "\f107";
  font-family: 'flaticon';
  font-size: 14px;
  left: 15px;
  top: 10px;
  transition: all 500ms ease;
}

.beneficiaries-section .tabs-content .content-box .feature-list li a:hover{
  background: #fff;
}

.beneficiaries-section .tabs-content .content-box .feature-list{
  padding-bottom: 40px;
}

.beneficiaries-section .tabs-content .content-box .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid #efecf3;
}

.beneficiaries-section .tabs-content .content-box .image-box img{
  width: 100%;
  border-radius: 10px;
}

.beneficiaries-section .tabs-content .content-box .icon-box{
  position: absolute;
  display: inline-block;
  left: -130px;
  top: 50%;
  margin-top: -50px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #f3f0f7;
  text-align: center;
  border-radius: 50%;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.beneficiaries-section .tabs-content .active-tab .content-box .icon-box{
  transform: scale(1,1);
}

.bg-color-2{
  background-color: #0d0b15;
}
.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}
.feature-3 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image: url(../img/feature-bg-1.webp);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 40px
    ;
}
.feature-3::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-start: 25%;
    inset-block-end: 0;
    background: #fff;
    filter: blur(50px);
    z-index: -1;
}
/* Tab 4 */
.tab-4 {
    --bs-nav-link-padding-x: 1.5rem;
    --bs-nav-link-padding-y: 1.5rem;
    --bs-nav-link-color: var(--bs-primary-text-emphasis);
    --bs-nav-pills-border-radius: 0.75rem;
    --bs-nav-pills-link-active-color: var(--bs-light);
    --bs-nav-pills-link-active-bg: var(--bs-primary-bg-subtle);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
}
.tab-4::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.tab-4::-webkit-scrollbar-track {
    background: transparent;
}
.tab-4::-webkit-scrollbar-thumb {
    background: transparent;
}
.tab-4 .nav-item {
    scroll-snap-align: start;
}
.tab-4 .nav-link {
    max-width: 18.75rem;
    height: 100%;
    color: var(--bs-dark-text-emphasis);
    background-color: var(--bs-light-bg-subtle);
    box-shadow: 0px 4px 8px 0px rgba(145, 158, 171, 0.16);
}
.tab-4 .nav-link.active {
    box-shadow: none;
}
.tab-4__text-hilight {
    background: linear-gradient(270deg, #4d89f9 1.21%, #704ee7 21.78%, #e8428c 71.65%, #ed6d4b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.xc-cta-one__inner {
    background-size: cover;
    padding: 70px 55px;
    border-radius: 10px;
    overflow: hidden;
}
.theme-bg-2 {
    background-color: rgb(248, 247, 252);
}
.p-relative {
    position: relative;
}
.xc-cta-one__shape {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    animation: 5s ease 0s infinite normal none running xc-moveX;
}
@keyframes xc-moveX {
  0% {
    transform: translateX(0px);
}
50% {
    transform: translateX(-20px);
}
100% {
    transform: translateX(0px);
}
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link,.bg-primary-subtle
{
  background-color: #f8f8f8 !important;
  color: var(--bs-dark-text-emphasis) !important;
}
.working-process__card
 {
    position: relative;
    text-align: center;
    padding: 12px 36px 40px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--eolexi-border-color, #dddddd);
    transition: 500ms;
    margin-bottom: 40px;
}
.working-process__card__inner {
    position: relative;
    z-index: 2;
}
.working-process__card__number {
    position: relative;
    margin-bottom: 41px;
}
.working-process__card__icon-box {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    margin: 0px auto 58px;
    /* border-radius: 50%; */
    transition: 500ms;
}.working-process__card__icon-box::before, .working-process__card__icon-box::after {
    content: "";
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border-radius: 50%; */
    transition: 500ms;
}
.working-process__card__icon-box::before {
    width: calc(100% + 56px);
    height: calc(100% + 56px);
    border: 1px dashed #f2f2f2;
}.working-process__card__icon-box::after {
    background-color: #c0c0c014;
}
.working-process__card__icon-box img{
  width: 60px;
}
.working-process__card__title {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 22px;
    color: var(--eolexi-black, #222222);
    text-transform: capitalize;
    line-height: 1.318;
    transition: 500ms;
    text-transform: uppercase;
}.working-process__card__text {
    margin-bottom: 19px;
    font-size: 14px;
    transition: 500ms;
}
.helpsupport{
  background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 4px 2px;
    position: relative;
    min-height: 12.25rem;
    margin-bottom: 2.5rem;
    width: 100%;
    border-width: 1px 1px 1px 0px;
    border-style: solid solid solid;
    border-color: rgb(234, 240, 246) rgb(234, 240, 246) rgb(234, 240, 246);
    border-image: initial;
    border-left: 0px;
    border-radius: 0px 2px 2px 0px;
    overflow: hidden;
    padding: 2.1875rem 2rem 3rem 2.375rem;
    transition: background-color 0.3s ease;
    position: relative;
}
.helpsupport::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background-color: var(--primary);
  transition: height 0.3s ease;
}
.helpsupport:hover{
      box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 6px 0px;
}
.helpsupport:hover::before{
   height: 100%;  
}
.helpsupport h6{
    margin: 0px 0px 1.875rem;
font-size: 14px;
font-weight: normal;
}
.helpsupport span{
  position: absolute;
  bottom: 0px;
  left: 2.375rem;
  right: 2rem;
  padding: 0.5rem 0px;
  border-top: 1px solid rgb(234, 240, 246);
  font-size: 12px;
  color: #4e4e4e;
}
/*sccreenshot css*/
/* line 2, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
.screenshot-wrap {
  position: relative;
  height: auto;
  min-height: 550px;
}

/* line 4, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
.screenshot-wrap .screenshot-frame {
  background-image: url("../img/iphone-mask.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 290px;
  height: 513px;
  position: absolute;
  top: -10px;
  left: calc(50% + 0.5px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 20px;
}

/* line 21, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */

.screenshot-wrap .swiper-slide img {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 30px;
}

/* line 30, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */

.screenshot-wrap .swiper-slide.swiper-slide-active img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.screenshot-wrap .swiper-slide .content{
  text-align: center;
  margin-top: 20px;
}
.screenshot-wrap .swiper-slide.swiper-slide-active .content{
   margin-top: 40px;
}
.screenshot-wrap .swiper-slide .content h3{
  font-size: 20px;
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 1200px) {
  /* line 41, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
  /* .screenshot-wrap .screenshot-frame {
    display: none;
  } */
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 51, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
  .screenshot-wrap .swiper-slide img {
    width: 65%;
    margin: auto;
  }
}
.detail h1,.detail h2, .detail h3, .detail h4,.detail h5,.detail h6,.detail strong{
  font-weight: normal;
}
.deletelayout
{
  background: #f9f9f9;
    /* border-radius: 20px; */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 45px;
}label {
    display: inline-block;
    font-size: 12px;
}
.inner-box {
    background-color: #F5F7FB !important;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    
    position: relative;
    padding: 30px 32px;
    box-sizing: border-box;
    display: flex
;
    align-items: flex-end;
    transition: all 300ms ease;
    border-left: 2px solid transparent;
}
.inner-box h4{font-size: 20px;}
.inner-box a{color: #4e4e4e;}
.inner-box:hover {
    border-color: #ECEDF2 !important;
    background-color: white !important;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.modal-backdrop.show{
     z-index: 99999;
}
.modal{    z-index: 999999;}