* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  overflow-x: hidden;
}

input, textarea, select {
  outline: none;
}

.remember input {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: 0;
}
.remember input::before {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  rotate: -45deg;
  top: -4px;
  left: 4px;
  z-index: 10;
}
.remember input::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #1B88CA;
  position: absolute;
  top: -10px;
}
.remember input:checked::after {
  background: #1B88CA;
}

.small-shadow {
  box-shadow: 0px 2px 10px 0px rgba(27, 136, 202, 0.1019607843);
}

.bg-half {
  background: rgba(27, 136, 202, 0.0509803922);
}

p {
  color: #080812;
  font-weight: 400;
  font-size: 18px;
}

.blue-text {
  color: #1B88CA;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
#preloader .loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #1B88CA;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.siteBlue-btn {
  background: #1B88CA;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  outline: none;
  border: 2px solid #1B88CA;
  padding: 12px 33px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.4s;
}
.siteBlue-btn:after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}
.siteBlue-btn:hover {
  color: #1B88CA;
}
.siteBlue-btn:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  transition: all 0.5s;
}
.siteBlue-btn .icon {
  transform: translateX(10px);
  transition: 0.4s;
}
.siteBlue-btn.border-btn {
  border: 2px solid #1B88CA;
  background: transparent;
  color: #1B88CA;
}
.siteBlue-btn.rounded-40 {
  border-radius: 40px;
}
.siteBlue-btn:hover .icon {
  transform: translateX(18px);
}

nav {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 2px 2px 20px 0px rgba(27, 136, 202, 0.2);
}
nav .container-fluid {
  width: 100%;
  max-width: 1500px;
  padding: 10px 40px;
}
nav .container-fluid .collapse .navbar-nav li a {
  font-weight: 500;
  font-size: 18px;
  color: #080812;
}
nav .container-fluid .collapse .navbar-nav li a.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.heading h6 {
  font-size: 18px;
  color: #1B88CA;
  font-weight: 600;
}
.heading h2 {
  font-weight: 800;
  line-height: 74px;
}
.heading h2 span {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
}

header {
  position: relative;
}
header .container .content .act .users .images img {
  cursor: pointer;
}
header .container .content .act .users .images img:nth-child(2) {
  margin-left: -14px;
}
header .container .content .act .users .images img:nth-child(3) {
  margin-left: -14px;
}
header .container .content .act .users span {
  font-weight: 400;
  color: #080812;
}
header .container .header-images .small-images a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #1B88CA;
  border-radius: 10px;
}
header::before {
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  top: -200px;
  left: -200px;
  background: radial-gradient(rgba(27, 135, 202, 0.8), rgba(27, 135, 202, 0.431372549), transparent, transparent);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}
header::after {
  content: "";
  width: 500px;
  height: 500px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(#1b87ca, rgba(27, 135, 202, 0.6235294118), transparent, transparent);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.marquee-container {
  padding: 3em 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.marquee-container .marquee-content {
  display: flex;
  width: 200%;
  animation: marquee 20s linear infinite;
}
.marquee-container .marquee-content img {
  margin-right: 10px;
}
.marquee-container .marquee-content:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.feature-tabs .nav-pills {
  border: 1px solid #1B88CA;
  border-radius: 10px;
}
.feature-tabs .nav-pills .nav-item {
  border-left: 1px solid #1B88CA;
}
.feature-tabs .nav-pills .nav-item button {
  width: 100%;
  background: transparent;
  display: flex;
  gap: 15px;
  padding: 30px;
}
.feature-tabs .nav-pills .nav-item button svg g rect {
  fill: rgba(8, 8, 18, 0.6980392157);
}
.feature-tabs .nav-pills .nav-item button h6 {
  color: rgba(8, 8, 18, 0.6980392157);
  font-size: 18px;
  font-weight: 700;
}
.feature-tabs .nav-pills .nav-item button small {
  color: rgba(8, 8, 18, 0.6980392157);
  font-weight: 500;
}
.feature-tabs .nav-pills .nav-item button.active svg g rect {
  fill: #1B88CA;
}
.feature-tabs .nav-pills .nav-item button.active h6 {
  color: #1B88CA;
}
.feature-tabs .nav-pills .nav-item button.active small {
  color: #1B88CA;
}
@media only screen and (max-width: 992px) {
  .feature-tabs .nav-pills .nav-item {
    border-left: 0;
    border-top: 1px solid #1B88CA;
    width: 100%;
  }
}
.feature-tabs .tab-content .tab-pane {
  border: 1px solid #1B88CA;
  background: rgba(27, 136, 202, 0.0509803922);
  padding: 60px 50px;
  border-radius: 10px;
}
.feature-tabs .tab-content .tab-pane .card-outer {
  border: 1px solid #1B88CA;
  display: grid;
  place-items: center;
  border-radius: 10px;
  padding: 50px 30px;
}
.feature-tabs .tab-content .tab-pane .card-outer .user-card {
  width: -moz-fit-content;
  width: fit-content;
}
.feature-tabs .tab-content .tab-pane .card-outer .user-card img {
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 992px) {
  .feature-tabs .tab-content .tab-pane .heading {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .feature-tabs .tab-content .tab-pane {
    padding: 25px 20px;
  }
  .feature-tabs .tab-content .tab-pane .card-outer {
    overflow: hidden;
    border-radius: 20px;
    padding: 0;
  }
  .feature-tabs .tab-content .tab-pane .card-outer .user-card {
    width: 100%;
  }
  .feature-tabs .tab-content .tab-pane .card-outer .user-card img {
    border-radius: 10px;
  }
}

.mark-list {
  list-style-image: url(../images/check.svg);
}

.clients .slider {
  max-width: 1350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.clients .slider .slide {
  padding: 10px;
}
.clients .slider .slide .inner {
  padding: 20px 30px;
  border-radius: 40px;
  background: #1B88CA;
  color: #fff;
  opacity: 0.6;
}
.clients .slider .slide .inner p {
  color: #fff;
  font-size: 16px;
}
.clients .slider .slide .inner .d-flex h6 {
  margin-bottom: 0;
  font-weight: 700;
}
.clients .slider .slick-slide.slick-current.slick-active.slick-center {
  scale: 1.1;
}
.clients .slider .slick-slide.slick-current.slick-active.slick-center .inner {
  opacity: 1 !important;
  border: 4px solid #fff;
}
.clients .slider .slick-dots li button {
  background: #1B88CA;
  width: 8px;
  height: 8px;
  border-radius: 50px;
}
.clients .slider .slick-dots li button::before {
  display: none;
}
.clients .slider .slick-dots li {
  opacity: 0.5;
}
.clients .slider .slick-dots li.slick-active {
  opacity: 1;
}

.faqs .container .accordion .accordion-item {
  border-bottom: 1.5px solid #1B88CA;
  padding: 10px 0;
}
.faqs .container .accordion .accordion-item .accordion-header button {
  background: transparent;
  box-shadow: none;
}
.faqs .container .accordion .accordion-item .accordion-header button::after {
  background-image: url(../images/arrow-down.svg);
}

footer {
  background: #1B88CA;
  padding: 20px 8px;
}
footer .container .row .link {
  display: flex;
}
footer .container .row .link .logo img {
  filter: brightness(100);
}
footer .container .row .link ul {
  display: flex;
  list-style: none;
  gap: 29px;
  align-items: center;
  margin-bottom: 0;
}
footer .container .row .link ul li a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 992px) {
  footer .container .row .link {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 576px) {
  footer .container .row .link ul {
    flex-direction: column;
  }
}

.login {
  background: #1B88CA;
  height: 100vh;
}
.login .row .right .with-google-apple {
  display: flex;
  gap: 20px;
  margin-top: 2em;
}
.login .row .right .with-google-apple button {
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #1B88CA;
  background: transparent;
  font-weight: 500;
  transition: 0.3s;
}
.login .row .right .with-google-apple button:hover {
  background-color: #1B88CA;
  color: #fff;
}
.login .row .right .with-google-apple button:hover svg {
  transition: 0.3s;
}
.login .row .right .with-google-apple button:hover svg path {
  fill: #fff;
}
.login .row .right .or-continue {
  margin-top: 2.5em;
}
.login .row .right .or-continue .top-border {
  height: 1.5px;
  width: 100%;
  background: #61b6ea;
}
.login .row .right .or-continue span {
  display: block;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 5px;
  margin-top: -13px;
}
.login .row .right .form-inputs {
  margin-top: 2em;
}
.login .row .right .form-inputs form input {
  border: 1px solid #1B88CA;
  border-radius: 8px;
  padding: 12px 1.2em;
  outline: none;
  font-weight: 500;
  color: #1B88CA;
}
.login .row .right .form-inputs form input:focus::-moz-placeholder {
  color: #ddd;
}
.login .row .right .form-inputs form input:focus::placeholder {
  color: #ddd;
}
.login .row .right .form-inputs form .show-hide {
  position: absolute;
  top: 10px;
  right: 16px;
  cursor: pointer;
  background: #fff;
  padding: 2px 4px;
}

.db-bg {
  background: rgba(27, 136, 202, 0.0509803922);
}

.dashboard-wrapper {
  display: flex;
}
.dashboard-wrapper .side-bar {
  position: absolute;
  left: 0;
  padding: 0 30px;
  max-width: 22em;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
  transition: 0.2s all;
  z-index: 10;
}
.dashboard-wrapper .side-bar .toggle2 {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}
@media only screen and (max-width: 1200px) {
  .dashboard-wrapper .side-bar .toggle2 {
    display: block;
  }
}
.dashboard-wrapper .side-bar button, .dashboard-wrapper .side-bar .button {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: 8px;
  background: rgba(27, 136, 202, 0.0509803922);
  text-decoration: none;
}
.dashboard-wrapper .side-bar button.bar-item, .dashboard-wrapper .side-bar .button.bar-item {
  background: transparent;
}
.dashboard-wrapper .side-bar button h5, .dashboard-wrapper .side-bar .button h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(8, 8, 18, 0.6980392157);
}
.dashboard-wrapper .side-bar button .icon i, .dashboard-wrapper .side-bar .button .icon i {
  transition: 0.4s;
  color: #272759;
}
.dashboard-wrapper .side-bar button:hover, .dashboard-wrapper .side-bar .button:hover {
  background: rgba(27, 136, 202, 0.0509803922);
}
.dashboard-wrapper .side-bar button.active, .dashboard-wrapper .side-bar .button.active {
  background: #1B88CA;
}
.dashboard-wrapper .side-bar button.active h5, .dashboard-wrapper .side-bar .button.active h5 {
  color: #fff;
}
.dashboard-wrapper .side-bar button.active h5 svg path, .dashboard-wrapper .side-bar .button.active h5 svg path {
  stroke: #fff;
  stroke-opacity: 1;
}
.dashboard-wrapper .side-bar button.active h5 svg g rect, .dashboard-wrapper .side-bar .button.active h5 svg g rect {
  fill: #fff;
  fill-opacity: 1;
}
.dashboard-wrapper .side-bar button.active .icon i, .dashboard-wrapper .side-bar .button.active .icon i {
  rotate: -45deg;
  color: #fff;
}
.dashboard-wrapper .side-bar button.logout, .dashboard-wrapper .side-bar .button.logout {
  margin-top: 5em;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1600px) {
  .dashboard-wrapper .side-bar button.logout, .dashboard-wrapper .side-bar .button.logout {
    position: absolute;
    bottom: 0px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.dashboard-wrapper .side-bar .panel {
  border-left: 2px solid #1B88CA;
  margin-left: 25px;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease-in;
}
.dashboard-wrapper .side-bar .panel ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.dashboard-wrapper .side-bar .panel ul li {
  margin: 5px 0;
}
.dashboard-wrapper .side-bar .panel ul li a {
  font-weight: 400;
  color: rgba(8, 8, 18, 0.6980392157);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 18px;
}
.dashboard-wrapper .side-bar .panel ul li a:hover {
  background: rgba(27, 136, 202, 0.0509803922);
}
.dashboard-wrapper .side-bar .panel ul li a.active {
  color: #1B88CA;
  font-weight: 600;
  background: rgba(27, 136, 202, 0.0509803922);
}
.dashboard-wrapper .side-bar .panel ul li:first-child {
  margin-top: 0;
}
.dashboard-wrapper .side-bar .panel ul li:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .side-bar::-webkit-scrollbar {
  width: 8px;
}
.dashboard-wrapper .side-bar::-webkit-scrollbar-track {
  background: #eee;
}
.dashboard-wrapper .side-bar::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 20px;
  border: 2px solid #eee;
}
@media only screen and (max-width: 1200px) {
  .dashboard-wrapper .side-bar {
    left: -22em;
  }
}
@media only screen and (max-width: 576px) {
  .dashboard-wrapper .side-bar {
    max-width: 100%;
    left: -100%;
  }
}
.dashboard-wrapper main {
  width: 100%;
  transition: 0.2s all;
  margin-left: 22em;
}
.dashboard-wrapper main .top-head {
  background: #fff;
  padding: 10px 20px;
}
.dashboard-wrapper main .top-head .content .notifications {
  background: transparent;
  width: 53px;
  height: 53px;
  border: 2px solid rgba(27, 135, 202, 0.5019607843);
  border-radius: 50%;
}
.dashboard-wrapper main .top-head .content .dropdown button svg {
  transition: 0.3s;
}
.dashboard-wrapper main .top-head .content .dropdown button:active svg {
  transform: translateY(5px);
}
.dashboard-wrapper main .top-head .content .dropdown button::after {
  display: none;
}
.dashboard-wrapper main .cards-info .row .box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.dashboard-wrapper main .cards-info.cards-info2 {
  padding: 0 2em;
}
.dashboard-wrapper main .cards-info.cards-info2 .row {
  padding: 32px 34px;
  background: #fff;
  border-radius: 10px;
}
.dashboard-wrapper main .cards-info.cards-info2 .row label {
  display: block;
  font-weight: 600;
  font-size: 16px;
}
.dashboard-wrapper main .cards-info.cards-info2 .row input {
  border: 1px solid rgba(27, 135, 202, 0.3019607843);
  padding: 12px;
  border-radius: 12px;
  background: rgba(27, 135, 202, 0.0470588235);
  color: #1B88CA;
  font-weight: 500;
}
.dashboard-wrapper main .cards-info.cards-info2 .row input.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #1B88CA;
  border-radius: 8px;
}
.dashboard-wrapper main .cards-info.cards-info2 .row select {
  border: 1px solid rgba(27, 135, 202, 0.3019607843);
  padding: 12px;
  border-radius: 12px;
  background: rgba(27, 135, 202, 0.0470588235);
  position: relative;
}
.dashboard-wrapper main .cards-info.cards-info2 .row .siteBlue-btn {
  margin-top: 10px;
  padding: 12px;
}
@media only screen and (max-width: 1200px) {
  .dashboard-wrapper main .cards-info.cards-info2 .row .from-to {
    rotate: 90deg;
  }
}
.dashboard-wrapper main .cards-info.cards-info2 .nav-pills .nav-item .nav-link {
  background-color: transparent;
  color: #9F9F9F;
  border-radius: 0;
}
.dashboard-wrapper main .cards-info.cards-info2 .nav-pills .nav-item .nav-link.active {
  font-weight: 600;
  border-bottom: 2px solid #1B88CA;
  color: #1B88CA;
}
.dashboard-wrapper main .cards-info.cards-info2 .accordion .accordion-item {
  margin: 10px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
}
.dashboard-wrapper main .cards-info.cards-info2 .accordion .accordion-item .accordion-header .accordion-button {
  color: #080812;
  font-weight: 500;
}
.dashboard-wrapper main .cards-info.cards-info2 .accordion .accordion-item .accordion-header .accordion-button:after {
  --bs-accordion-btn-icon: url(../images/plus.svg);
}
.dashboard-wrapper main .cards-info.cards-info2 .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  font-weight: 700;
  background: transparent;
}
.dashboard-wrapper main .cards-info.cards-info2 .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  --bs-accordion-btn-active-icon: url(../images/minus.svg);
}
.dashboard-wrapper main .cards-info .user-cards-slider {
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(27, 136, 202, 0.1019607843);
}
.dashboard-wrapper main .cards-info .user-cards-slider hr {
  border: 1px dashed #1B88CA;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-slider .slick-dots li {
  background: #1B88CA;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  transition: 0.3s;
  opacity: 0.5;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-slider .slick-dots li button::before {
  display: none;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-slider .slick-dots li.slick-active {
  opacity: 1;
  width: 22px;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-status .btn {
  font-weight: 600;
  padding: 10px 12px;
  cursor: default;
  border: 0;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-status .btn.active-card {
  background: rgba(52, 168, 83, 0.1019607843);
  color: #34A853;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-status .btn.freez-card {
  background: rgba(27, 136, 202, 0.1019607843);
  color: #1B88CA;
}
.dashboard-wrapper main .cards-info .user-cards-slider .cards-status .btn.closed-card {
  background: rgba(255, 77, 94, 0.1019607843);
  color: #FF4D5E;
}
@media only screen and (max-width: 1200px) {
  .dashboard-wrapper main {
    margin-left: 0em;
  }
}

.topUpModal .modal-dialog.modal-lg {
  --bs-modal-width: 634px;
}
.topUpModal .modal-dialog .modal-content .modal-header {
  padding-top: 1.5em;
  padding-right: 1.5em;
}
.topUpModal .modal-dialog .modal-content .modal-header .btn-close {
  --bs-btn-close-bg: url(../images/cross.svg);
  box-shadow: none;
}
.topUpModal .modal-dialog .modal-content .modal-body form {
  padding: 1em 3em;
}
.topUpModal .modal-dialog .modal-content .modal-body form label {
  width: 100%;
}
.topUpModal .modal-dialog .modal-content .modal-body form input {
  border: 1px solid #1B88CA;
  padding: 12px;
  border-radius: 10px;
  outline: none;
}
@media only screen and (max-width: 576px) {
  .topUpModal .modal-dialog .modal-content .modal-body form {
    padding: 1em 0.8em;
  }
}

.checks {
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.checks input {
  position: absolute;
  width: 70px;
  height: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  opacity: 0;
  border-radius: 30px;
  cursor: pointer;
}
.checks input ~ div {
  color: #1B88CA;
  background: rgba(27, 136, 202, 0.0509803922);
  width: 70px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1.8px solid #1B88CA;
  border-radius: 20px;
}
.checks input:checked ~ div {
  color: #fff;
  background: #1B88CA;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: black;
  color: #e47735;
  border: 2px solid #e47735;
  display: grid;
  place-items: center;
  filter: invert(1);
  border-radius: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transform: translateX(100px);
  transition: 0.3s;
}
.back-to-top i {
  transition: 0.3s;
  animation: animate 2s infinite ease-out;
}
.back-to-top:hover i {
  transform: translateY(-6px);
}
@keyframes animate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */