@charset "UTF-8";

/*!============
   * File:        styles.css
   * Author:      Clicksfow org
   * Date:        October 9, 2024
   * Description: This file contains the main styles for the website,
                  including base styles, layout, and components.
   * Version:     1.0.0
   * Notes:       It's fully comfortable with mobile computer.
===========
== */
/* Font Family Initial */
:root {
  --title-font: "Lato",
    serif;
  --paragraph-font: "Lato",
    serif;
  --heading-one: clamp(1.5625rem, 2.8vw + 1rem, 3.75rem);
  --heading-two: clamp(1.375rem, 1.7vw + 1rem, 2.8125rem);
  --heading-three: clamp(1.25rem, .8vw + 1rem, 1.875rem);
  --heading-four: clamp(1.125rem, .5vw + 1rem, 1.5rem);
  --heading-five: clamp(1rem, .3vw + 1rem, 1.25rem);
  --heading-six: clamp(0.875rem, .12vw + .875rem, 1rem);
  /*=== Variable Color on RGB ===*/
  --base: 0, 147, 175;
  --body-color: 84, 84, 84;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark: 3, 4, 68;
  --border: 210, 210, 221;
  /*=== Bootstrap Color on RGB ===*/
  --primary: 35, 87, 112;
  --secondary: 108, 117, 125;
  --warning: 255, 193, 7;
  --info: 13, 202, 240;
  --success: 25, 135, 84;
  --danger: 220, 53, 69;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  font-family: var(--paragraph-font);
  color: rgb(var(--body-color));
  font-weight: 400;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: rgb(var(--dark));
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
}

p {
  line-height: 1.65;
}

/* =========  Global Start  =========*/
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: rgb(var(--base));
}

::selection {
  color: #fff;
  background: rgb(var(--base));
}

.section-heading {
  -webkit-margin-after: 35px;
  margin-block-end: 35px;
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .section-heading {
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
  }
}

@media screen and (max-width: 424px) {
  .section-heading {
    -webkit-margin-after: 25px;
    margin-block-end: 25px;
  }
}

.section-heading__subtitle {
  margin-bottom: 10px;
  font-size: 1.125rem;
  position: relative;
  padding-left: 40px;
}

.section-heading__subtitle::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background: rgb(var(--base));
  left: 8px;
  top: 8px;
  -webkit-box-shadow: 0 0 0px 8px rgb(var(--base), 0.2);
  box-shadow: 0 0 0px 8px rgb(var(--base), 0.2);
}

.section-heading__title {
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}

.section-heading__desc {
  font-size: 1rem;
}

.section-heading.center-style {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center-style .section-heading__subtitle {
  background-color: rgb(var(--base), 0.15);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
  padding: 8px 30px;
  border-radius: 100px;
  font-weight: 600;
  color: rgb(var(--base));
}

.section-heading.center-style .section-heading__subtitle::before {
  display: none;
}

.py-120 {
  padding-block: 120px;
}

@media screen and (max-width: 991px) {
  .py-120 {
    padding-block: 80px;
  }
}

@media screen and (max-width: 424px) {
  .py-120 {
    padding-block: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media screen and (max-width: 424px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 424px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.py-60 {
  padding-block: 60px;
}

@media screen and (max-width: 991px) {
  .py-60 {
    padding-block: 40px;
  }
}

@media screen and (max-width: 424px) {
  .py-60 {
    padding-block: 30px;
  }
}

.pt-60 {
  padding-top: 60px;
}

@media screen and (max-width: 991px) {
  .pt-60 {
    padding-top: 40px;
  }
}

@media screen and (max-width: 424px) {
  .pt-60 {
    padding-top: 30px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .pb-60 {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 424px) {
  .pb-60 {
    padding-bottom: 30px;
  }
}

.my-120 {
  margin-block: 120px;
}

@media screen and (max-width: 991px) {
  .my-120 {
    margin-block: 80px;
  }
}

@media screen and (max-width: 424px) {
  .my-120 {
    margin-block: 60px;
  }
}

.mt-120 {
  margin-top: 120px;
}

@media screen and (max-width: 991px) {
  .mt-120 {
    margin-top: 80px;
  }
}

@media screen and (max-width: 424px) {
  .mt-120 {
    margin-top: 60px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 424px) {
  .mb-120 {
    margin-bottom: 60px;
  }
}

.my-60 {
  margin-block: 60px;
}

@media screen and (max-width: 991px) {
  .my-60 {
    margin-block: 40px;
  }
}

@media screen and (max-width: 424px) {
  .my-60 {
    margin-block: 30px;
  }
}

.mt-60 {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .mt-60 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 424px) {
  .mt-60 {
    margin-top: 30px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 424px) {
  .mb-60 {
    margin-bottom: 30px;
  }
}

/* custom Space Start */
/*Margin */
.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.items-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.line-1 {
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .w-sm-50 {
    width: 50%;
  }

  .row .w-sm-50 {
    width: calc(50% - var(--bs-gutter-x) * 0.5);
  }
}

.mw-fit {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.cursor-pointer {
  cursor: pointer;
}

.text-base {
  color: rgb(var(--base)) !important;
}

.text-info {
  color: rgb(var(--info)) !important;
}

.text-warning {
  color: rgb(var(--warning)) !important;
}

.text-danger {
  color: rgb(var(--danger)) !important;
}

.text-success {
  color: rgb(var(--success)) !important;
}

.text-primary {
  color: rgb(var(--primary)) !important;
}

.text-secondary {
  color: rgb(var(--secondary)) !important;
}

@-webkit-keyframes FadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes FadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes FadeOut {
  0% {
    display: block;
    opacity: 1;
  }

  99% {
    display: block;
    opacity: 0;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes FadeOut {
  0% {
    display: block;
    opacity: 1;
  }

  99% {
    display: block;
    opacity: 0;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

/* ======= preload Css Start = */
.info-modal {
  --bs-modal-width: 400px;
}

.info {
  text-align: center;
}

.info__thumb img {
  max-width: 180px;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 80px;
}

.info__icon {
  font-size: clamp(2.5rem, 1.9311rem + 2.4272vw, 3.75rem);
  padding-block: 15px;
}

@media screen and (max-width: 991px) {
  .info__icon {
    padding-block: 10px;
  }
}

.info__text {
  font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
}

.error-modal {
  --space: 25px;
}

@media screen and (max-width: 991px) {
  .error-modal {
    --space: 20px;
  }
}

@media screen and (max-width: 991px) {
  .error-modal {
    --space: 15px;
  }
}

.error-modal .info__text {
  font-size: 16px;
  line-height: 1.2;
  margin-block: var(--space);
}

.error-modal .info .info-btn__link {
  margin-top: 10px;
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: hsl(var(--black));
}

.error-modal .info .info-btn__link:hover {
  text-decoration: underline;
}

.error-modal .info__error {
  background-color: rgb(var(--danger), 0.1);
  padding: 20px 15px;
  margin-block: var(--space);
  border-radius: 8px;
}

.error-modal .info__error-text {
  margin-bottom: 0;
  color: rgb(var(--danger));
  font-weight: 400;
}

/* ======= preload Css End =  */
.header {
  padding-block: 20px;
  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;
  width: 100%;
  background: rgb(var(--white));
}

@media screen and (max-width: 991px) {
  .header {
    padding-block: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    margin-bottom: 25px;
  }
}

.header .logo {
  max-width: 280px;
  height: 75px;
  display: inline-block;
  padding: 0;
}

.header .logo img {
  width: 220px;
}

@media screen and (max-width: 991px) {
  .header .logo {
    width: 180px;
  }
}

.header .trust-by {
  height: 30px;
}

.header .trust-by img {
  height: 100%;
}

.navbar-toggler:focus {
  outline: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

/*=== Button Modify Start ===*/
.pill {
  border-radius: 100px !important;
}

.btn {
  color: rgb(var(--white)) !important;
  font-weight: 600;
  padding-inline: 30px;
  padding-block: 15px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  background-color: rgb(var(--button-color, var(--base)));
}

.btn:hover {
  background-color: rgb(var(--button-color, var(--base)), 0.08);
  border-color: rgb(var(--button-color, var(--base)));
  color: rgb(var(--button-color, var(--base))) !important;
}

.btn.btn-outline {
  background-color: rgb(var(--button-color, var(--base)), 0.08);
  border-color: rgb(var(--button-color, var(--base)));
  color: rgb(var(--button-color, var(--base))) !important;
}

.btn.btn-outline:hover {
  background-color: rgb(var(--button-color, var(--base)));
  border-color: rgb(var(--button-color, var(--base)));
  color: rgb(var(--white)) !important;
}

.btn.btn--base {
  --button-color: var(--base);
}

.btn.btn--primary {
  --button-color: var(--primary);
}

.btn.btn--secondary {
  --button-color: var(--secondary);
}

.btn.btn--info {
  --button-color: var(--info);
}

.btn.btn--warning {
  --button-color: var(--warning);
}

.btn.btn--success {
  --button-color: var(--success);
}

.btn.btn--danger {
  --button-color: var(--danger);
}

/*=== Button Modify End ===*/
.service-card {
  background-color: rgb(var(--white));
  padding: 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 991px) {
  .service-card {
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .service-card {
    padding: 15px;
  }
}

@media screen and (max-width: 424px) {
  .service-card {
    padding: 10px;
  }
}

.service-card::after {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  content: "";
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  border-radius: inherit;
  background-color: rgb(var(--base), 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-card * {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.service-card:hover * {
  color: rgb(var(--white));
}

.service-card:hover::after {
  top: 0;
}

.service-card:hover .service-card__overlay {
  right: 0;
  -webkit-transition-delay: 0ms !important;
  transition-delay: 0ms !important;
}

.service-card__overlay {
  position: absolute;
  right: -100%;
  top: 0;
  width: 140px;
  max-height: 200px;
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transition-delay: 100ms !important;
  transition-delay: 100ms !important;
}

.service-card__overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: inherit;
}

.service-card__count::before {
  position: absolute;
  top: 30px;
  right: 10px;
  color: transparent;
  opacity: 0.15;
  font-size: 80px;
  -webkit-text-stroke: 1px rgb(var(--base));
  line-height: 45px;
  font-weight: 700;
  counter-increment: my-sec-counter;
  content: counters(my-sec-counter, ".", decimal-leading-zero);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

@media screen and (max-width: 991px) {
  .service-card__count::before {
    font-size: 50px;
  }
}

.service-card__content .service-card__title {
  margin-block: 16px 18px;
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  .service-card__content .service-card__title {
    font-size: 20px;
  }
}

.service-card__content .service-card__desc {
  font-size: 14px;
}

.service-card__content .service-card__link {
  --pl: 0px;
  text-decoration: none;
  position: relative;
  padding-left: var(--pl);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-card__content .service-card__link::after {
  position: absolute;
  content: "";
  width: calc(var(--pl) - 5px);
  height: 2px;
  background-color: rgb(var(--white));
  left: 0;
  bottom: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-card__content .service-card__link:hover {
  --pl: 20px;
}

/* =========  Plugin Customization Start  =========*/
/* =========  Select2 Start  =========*/
.select2-wrapper {
  --border-radius: 8px;
  --height: 50px;
  --select2-border: hsl(var(--border-color));
}

.select2+.select2-container {
  border: 1px solid var(--select2-border);
  border-radius: var(--border-radius);
  width: 100% !important;
  height: 50px;
}

.select2+.select2-container .select2-selection__rendered {
  line-height: var(--height);
}

.select2+.select2-container .select2-selection--single {
  height: var(--height);
}

.select2+.select2-container .select2-selection {
  border: 0;
  background-color: transparent;
  width: 100%;
}

.select2+.select2-container .selection {
  width: 100%;
}

.select2+.select2-container .select2-selection__arrow {
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #F8F8F8;
  border-radius: inherit;
  height: calc(var(--height) - 10px);
  width: calc(var(--height) - 10px);
}

.select2+.select2-container .select2-selection__arrow::after {
  position: absolute;
  content: "\f078";
  inset: 0;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.select2+.select2-container .select2-selection__arrow b {
  border: 0;
}

.select2-container--open:has(.select2-dropdown--above) {
  margin-top: -12px;
}

.select2-container--open:has(.select2-dropdown--below) {
  margin-top: 10px;
}

.select2-container--open .select2-dropdown {
  border: 1px solid var(--select2-border) !important;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.select2-container--open .select2-dropdown--above {
  margin-bottom: 10px;
}

.select2-search__field {
  border-radius: var(--border-radius);
  border: 1px solid var(--select2-border) !important;
}

.select2-search__field:focus {
  outline: 0;
  border-color: hsl(var(--base)) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base));
}

.select2-container--below.select2-container--open .select2-selection__arrow::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* =========  Select2 End  =========*/
/* ==== Slick Arrow & Dots css Start === */
.slick-initialized.slick-slider {
  margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-initialized.slick-slider .slick-slide {
  height: auto;
  padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  color: hsl(var(--white));
  width: 60px;
  height: 60px;
  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;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .slick-arrow {
    width: 45px;
    height: 45px;
  }
}

.slick-arrow:hover {
  border-color: hsl(var(--base));
  background-color: hsl(var(--base-two));
}

.slick-next {
  right: -20px;
}

@media screen and (max-width: 991px) {
  .slick-next {
    right: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-next {
    right: 10px;
  }
}

.slick-prev {
  left: -20px;
}

@media screen and (max-width: 991px) {
  .slick-prev {
    left: -10px;
  }
}

@media screen and (max-width: 575px) {
  .slick-prev {
    left: 10px;
  }
}

/* -------------- Slick Slider Arrow Style two ------------  */
.slick-arrow {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  color: hsl(var(--white));
  width: 32px;
  height: 34px;
  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;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: hsl(var(--black));
  color: hsl(var(--white));
  top: -67px;
}

@media screen and (max-width: 1199px) {
  .slick-arrow {
    top: -69px;
  }
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    top: auto;
    bottom: -50px;
    right: 50%;
  }
}

.slick-arrow:hover {
  background-color: hsl(var(--black));
  color: hsl(var(--white));
}

.slick-next {
  right: 10px;
  background-color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
  .slick-next {
    top: auto;
    right: calc(50% - 37px);
  }
}

.slick-prev {
  right: 52px;
}

@media screen and (max-width: 767px) {
  .slick-prev {
    top: auto;
    right: calc(50% + 5px);
  }
}

/* Dots Css Start */
.slick-dots {
  text-align: center;
  padding-top: 20px;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  border: none;
  background-color: hsl(var(--black));
  color: hsl(var(--white));
  margin: 0 3px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-radius: 50%;
  text-indent: -9999px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.slick-dots li.slick-active button {
  background-color: hsl(var(--base));
  width: 25px;
  border-radius: 5px;
  color: hsl(var(--base));
}

/* Dots Css End */
/* ==== Slick Arrow & Dots css Start === */
/* ======= Range Slider Css Start = */
.custom--range__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
}

.custom--range__content label {
  width: 40%;
}

.custom--range__content input {
  width: 60%;
  text-align: right;
}

.custom--range input {
  border: 0;
  color: hsl(var(--body-color));
  font-weight: 500;
}

.custom--range #slider-range {
  height: 5px;
  border: 0;
  background: hsl(var(--base)/0.2);
}

.custom--range #slider-range .ui-widget-header {
  background-color: hsl(var(--base));
}

.custom--range #slider-range span:focus {
  background-color: hsl(var(--base));
}

.custom--range #slider-range .ui-slider-handle {
  width: 15px !important;
  height: 15px !important;
  background-color: hsl(var(--base)) !important;
  border: 2px solid hsl(var(--white)) !important;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* ======= Range Slider Css End = */
/* =========  Plugin Customization End  =========*/
/*----------------------------------------------
  // Sections Style Start
----------------------------------------------*/
/* === Top Header Start Here === */
.header-top {
  background-color: rgb(var(--base), 0.8);
  border-bottom: 1px solid rgb(var(--black), 0.2);
  padding: 10px 0px;
  position: relative;
}

.header-top .social-list.style-two .social-list__link flex-center {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.top-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .top-header-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-list__item {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}

.contact-list__item:last-child {
  padding-right: 0;
  margin-right: 0;
}

.contact-list__item:last-child::before {
  display: none;
}

.contact-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgb(var(--white), 0.4);
}

.contact-list__item-icon {
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: rgb(var(--white));
  background-color: rgb(var(--dark), 0.7);
  border-radius: 50%;
  margin-right: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-list__link {
  color: rgb(var(--white));
  font-weight: 400;
  text-decoration: none;
}

.contact-list__link a {
  text-decoration: none;
}

.contact-list__link:hover .contact-list__link-icon {
  color: rgb(var(--white));
}

/* Login Registration */
.login-registration-list {
  margin: 0 -10px;
  padding-right: 20px;
  padding-left: 0px;
  list-style: none;
}

@media screen and (max-width: 991px) {
  .login-registration-list {
    padding-right: 0;
  }
}

.login-registration-list__item {
  color: rgb(var(--white));
  padding: 0 10px;
  position: relative;
}

.login-registration-list__item:last-child::before {
  display: none;
}

.login-registration-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgb(var(--white)/0.5);
}

.login-registration-list__icon {
  color: rgb(var(--dark));
  margin-right: 10px;
  font-size: 16px;
}

.login-registration-list__link {
  color: rgb(var(--white));
  font-weight: 400;
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .login-registration-list__link {
    font-size: 15px;
  }
}

.login-registration-list__link:hover {
  color: rgb(var(--base));
}

.login-registration-list__link:hover .login-registration-list__icon {
  color: rgb(var(--white));
}

@media screen and (max-width: 991px) {
  .login-registration-list__link:hover {
    color: rgb(var(--base));
  }
}

/* === Top Header End Here === */
/* =========  Hero Section Start  =========*/
.hero-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#dedede), color-stop(88.31%, #ffffff), to(#ffffff));
  background: linear-gradient(180deg, #dedede 0%, #ffffff 88.31%, #ffffff 100%);
}

.hero-section .hero-thumb {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hero-section .hero-content {
  padding: 0 70px;
  text-align: center;
}

@media screen and (max-width: 1399px) {
  .hero-section .hero-content {
    padding: 0 32px;
  }
}

@media screen and (max-width: 1199px) {
  .hero-section .hero-content {
    padding: 0 20px;
  }
}

.hero-section .hero-content__title {
  font-size: clamp(1.875rem, 1.1924rem + 2.9126vw, 3.375rem);
  line-height: 1.1;
  color: #26576f;
  margin: 35px 5px 0;
}

.hero-section .hero-content__desc {
  margin-top: 20px;
  font-size: clamp(1.125rem, 0.9828rem + 0.6068vw, 1.4375rem);
}

.hero-section .hero-content .hero-content__btn {
  margin-bottom: 20px;
}

.hero-section .hero-content .hero-content__trust .text {
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-section .hero-content .hero-content__trust .thumb-group {
  margin-bottom: 16px;
  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;
}

.hero-section .hero-content .hero-content__trust .thumb-group img {
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 424px) {
  .hero-section .hero-content .hero-content__trust .thumb-group img {
    height: 38px;
  }
}

.hero-section .hero-content__bottom {
  background: rgb(var(--base));
  color: rgb(var(--white));
  text-align: center;
  padding: 10px;
  font-size: clamp(1.125rem, 0.9828rem + 0.6068vw, 1.4375rem);
  font-weight: 700;
}

.hero-section .hero-content__bottom p {
  margin-bottom: 0;
}

.thumb-group {
  margin-bottom: 16px;
  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;
}

.thumb-group img {
  height: 40px;
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 424px) {
  .thumb-group img {
    height: 38px;
  }
}

/* =========  Hero Section End  =========*/
.testimonials-section .section-overlay {
  background-color: transparent;
}

.testimonial-content__title {
  color: rgb(var(--primary));
  font-size: clamp(1.5625rem, 1.2496rem + 1.335vw, 2.25rem);
  padding-block: 30px;
}

.testimonial-content__ratting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  gap: 5px;
  font-size: clamp(2.5rem, 1.3623rem + 4.8544vw, 5rem);
  color: rgb(var(--warning));
}

.testimonial-item__wrapper {
  --effect: 25px;
  position: relative;
}

.testimonial-item__wrapper:hover {
  --effect: 3px;
}

.testimonial-item__wrapper:hover .owl-nav button {
  opacity: 1;
}

.testimonial-item {
  border: 1px solid rgb(var(--base));
  padding: 20px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .testimonial-item {
    padding: 15px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial-item {
    padding: 10px;
  }
}

.testimonial-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 575px) {
  .testimonial-item__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.testimonial-item .author-image {
  --size: 120px;
  width: var(--size);
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
  .testimonial-item .author-image {
    --size: 100px;
  }
}

@media screen and (max-width: 575px) {
  .testimonial-item .author-image {
    --size: 80px;
  }
}

.testimonial-item .author-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-item .purchase-verify {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgb(var(--primary));
  gap: 5px;
  font-size: 14px;
  padding: 5px;
  background-color: rgb(var(--white), 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 5px;
}

.testimonial-item .purchase-verify__text {
  font-size: 12px;
  line-height: 1.2;
}

.testimonial-item .author-title {
  margin-bottom: 5px;
  font-size: clamp(1.125rem, 0.9543rem + 0.7282vw, 1.5rem);
  color: rgb(var(--base));
}

.testimonial-item .author-ratting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgb(var(--white));
}

.testimonial-item .author-ratting i {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgb(var(--warning));
  border-radius: 50%;
}

.testimonial-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-item__header .testimonial-card__thumb {
  --size: 75px;
  width: var(--size);
  border-radius: 5px;
  border: 3px solid #c1cad5;
}

.testimonial-item__header .testimonial-card__thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-item .testimonial-message__title {
  font-size: 20px;
  color: #2f2f2f;
  margin-block: 10px;
}

.testimonial-item__text {
  color: #404653;
}

@media screen and (max-width: 767px) {
  .testimonial-item__text {
    font-size: 14px;
  }
}

.testimonial-section__info {
  font-size: 12px;
}

.media-section__title {
  margin-top: 30px;
  font-size: clapCal(25px, 36px);
  color: rgb(var(--primary));
}

.media-section .media-section_thumb {
  margin-bottom: 65px;
}

@media screen and (max-width: 991px) {
  .media-section .media-section_thumb {
    margin-bottom: 40px;
  }
}

.media-section .news-thumb {
  text-align: center;
}

.choose-us__inner {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0fafe), to(#ffffff));
  background: linear-gradient(180deg, #f0fafe 0%, #ffffff 100%);
  margin: 0 auto 40px;
  padding: 36px 32px 0;
}

@media screen and (max-width: 991px) {
  .choose-us__inner {
    padding: 20px 10px 0;
    margin: 0 auto 20px;
  }
}

.choose-us__title {
  font-size: clapCal(25px, 36px);
  color: rgb(var(--primary));
}

.choose-us__subtitle {
  color: rgb(var(--primary));
  font-size: clamp(1rem, 0.6587rem + 1.4563vw, 1.75rem);
  line-height: 30px;
  font-weight: 700;
  margin: 15px auto 37px;
}

.choose-us__card .card-thumb {
  height: 64px;
  width: 64px;
  margin-inline: auto;
}

.choose-us__card .card-thumb img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.choose-us__card .card-content .card-header {
  font-size: clamp(1.125rem, 1.0112rem + 0.4854vw, 1.375rem);
  font-weight: 700;
  color: #60606d;
  margin: 20px 0 25px;
}

@media screen and (max-width: 991px) {
  .choose-us__card .card-content .card-header {
    margin: 10px 0 15px;
  }
}

/*   Privacy Section Start  */
.privacy__inner {
  padding: 30px 25px 20px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#0290aa), to(#1d5979));
  background: linear-gradient(180deg, #0290aa 0%, #1d5979 100%);
  line-height: 1.5;
  color: #f7fafc;
}

@media screen and (max-width: 991px) {
  .privacy__inner {
    padding: 20px 10px;
  }
}

.privacy-card {
  height: 100%;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 400px;
  margin-inline: auto;
}

.privacy-card__title {
  color: rgb(var(--white));
  margin-top: 15px;
  font-size: clapCal(22px, 30px);
}

/*   Privacy Section End  */
/*   Faq Section Start  */
.faq__title {
  text-align: center;
  color: #1d5772;
  font-weight: 700;
  margin: 30px 0;
  font-size: clamp(1.5625rem, 1.2496rem + 1.335vw, 2.25rem);
}

.accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  background-color: transparent;
  border: 1px solid #cac8c8;
  border-radius: 10px;
}

.accordion .accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border-bottom: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  font-weight: 700;
  font-size: 16px;
  color: #1d5772;
}

.accordion .accordion-button::after {
  background: unset;
  content: "+";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  -webkit-transform: unset;
  transform: unset;
}

.accordion .accordion-button[aria-expanded=true]::after {
  content: "\f068";
}

.accordion .accordion-body {
  background-color: transparent;
  border-radius: 6px;
  padding-top: 0;
  font-size: 16px;
  color: #60606d;
}

/*   Faq Section End  */
/* =========  Chose-us Section Start  =========*/
.chose-us-section .section-overlay {
  background-color: #003478;
}

.chose-us-section .section-heading__title,
.chose-us-section .section-heading__subtitle {
  color: rgb(var(--white)) !important;
}

.chose-us-section .chose-us__content {
  position: relative;
  z-index: 1;
}

.chose-us-section .chose-us__content .line-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .chose-us-section .chose-us__content .line-overlay {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .chose-us-section .chose-card-02 {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .chose-us-section .chose-card-02 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 992px) {
  .chose-us-section .chose-card-03 {
    margin-top: 85px;
  }
}

@media screen and (min-width: 1200px) {
  .chose-us-section .chose-card-03 {
    margin-top: 50px;
  }
}

.chose-us-section .progress-card {
  color: rgb(var(--white));
  padding: 30px;
  border-radius: 10px;
  padding: 0 40px 0;
  text-align: center;
}

@media screen and (max-width: 1399px) {
  .chose-us-section .progress-card {
    padding: 0 20px 0;
  }
}

@media screen and (max-width: 1199px) {
  .chose-us-section .progress-card {
    padding: 0 0px 0;
  }
}

.chose-us-section .progress-card__icon {
  position: relative;
  --size: 150px;
  background-color: rgb(var(--white));
  color: rgb(var(--base));
  font-size: 64px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .chose-us-section .progress-card__icon {
    --size: 120px;
    font-size: 40px;
  }
}

.chose-us-section .progress-card__icon .number {
  --size: 40px;
  position: absolute;
  background-color: rgb(var(--base));
  color: rgb(var(--white));
  width: var(--size);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--size);
  border-radius: 50%;
  top: 0px;
  left: 0px;
  font-size: 16px;
}

.chose-us-section .progress-card__title {
  font-size: 22px;
  color: rgb(var(--white));
  margin-bottom: 15px;
}

.chose-us-section .progress-card__desc {
  font-size: 16px;
  color: rgb(var(--white));
}

/* =========  Chose-us Section End  =========*/
/*----------------------------------------------
  // Sections Style End
----------------------------------------------*/
/*----------------------------------------------
  // Partials Style Start
----------------------------------------------*/
/*=== Typography Start ===*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-family: var(--title-font);
  color: rgb(var(--dark));
  line-height: 1.3;
  word-break: break-word;
  font-weight: 700;
}

/*=== Typography End ===*/
/* ========= Breadcrumb Css Start ======= */
.breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #ddd;
  padding-top: 88px;
}

.breadcrumb .header {
  top: 0;
}

.breadcrumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 228, 255, 0.377)), to(#fbfbfb));
  background: linear-gradient(180deg, rgba(229, 228, 255, 0.377) 0%, #fbfbfb 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumb__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.breadcrumb__overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumb__wrapper {
  text-align: center;
  padding-block: 100px;
}

.breadcrumb__title {
  margin-bottom: 10px;
  color: rgb(var(--black));
}

/* ========= Breadcrumb Css End ======= */
/* ======= Social Icon Css Start = */
.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-list__item {
  margin-right: 10px;
}

.social-list__item:last-child {
  margin-right: 0;
}

.social-list__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  color: rgb(var(--white));
  background-color: rgb(var(--white), 0.15);
}

.social-list__link.active,
.social-list__link:hover,
.social-list__link:focus {
  background-color: rgb(var(--base));
  color: rgb(var(--white)) !important;
  border-color: rgb(var(--base)) !important;
}

@media screen and (max-width: 767px) {
  .social-list__link {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}

/* ======= Social Icon Css End =  */
/* =========  Form Start  =========*/
.custom-input-group {
  border: 1px solid rgb(var(--black), 0.1);
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.custom-input-group:focus-within {
  border: 1px solid rgb(var(--base));
}

.form-group {
  margin-bottom: 16px;
}

.form-group .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgb(var(--black), 0.1);
  padding: 13px 15px;
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: rgb(var(--body-color));
}

.form-group .form-control:focus {
  border: 1px solid rgb(var(--base));
}

.form-group .form-control__message {
  font-size: 12px;
  color: #262626;
}

.form-group .form-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group .form-select {
  line-height: 30px;
}

.form-group .input-list {
  --divider: "/f068";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.form-group .input-list__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.form-group .input-list__item:not(:last-of-type) {
  margin-right: 10px;
}

.form-group .input-list__item:not(:last-of-type)::before {
  content: var(--divider, "8");
  position: absolute;
  right: -18px;
  top: 50%;
  height: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

textarea.form-control {
  height: 150px;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-check.radio .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgb(var(--black), 0.2);
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.form-check.radio .form-check-input:active {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.form-check.radio .form-check-input:checked {
  background-color: transparent;
  border-color: rgb(var(--base));
  display: grid;
  place-items: center;
}

.form-check.radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check.radio .form-check-input:checked::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: rgb(var(--base));
  border-radius: 50%;
  z-index: 999;
}

.form-check.radio .form-check-label {
  font-weight: 600;
  width: calc(100% - 16px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 0.875rem;
}

.form-check.checkbox .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 0px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  cursor: pointer;
}

.form-check.checkbox .form-check-input:checked {
  background-color: rgb(var(--base)) !important;
  border-color: rgb(var(--base)) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-check.checkbox .form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check.checkbox .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgb(var(--white));
  font-size: 12px;
}

.form-check.checkbox .form-check-label {
  font-weight: 600;
  width: calc(100% - 16px);
  padding-left: 12px;
  cursor: pointer;
  font-size: 14px;
}

/* =========  Form End  =========*/
/*  Footer Stat  */
.footer-section {
  margin-top: 100px;
  color: #fff;
}

.footer-section a {
  color: #fff;
}

.footer-section__inner {
  background-color: #00697c;
  padding: 100px 23px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .footer-section__inner {
    padding: 60px 15px 10px;
  }
}

.footer-section__inner .footer-thumb {
  --size: 120px;
  position: absolute;
  top: -60px;
  width: var(--size);
  height: var(--size);
}

@media screen and (max-width: 991px) {
  .footer-section__inner .footer-thumb {
    --size: 100px;
  }
}

.footer-section__inner .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5px !important;
}

@media screen and (max-width: 767px) {
  .footer-section__inner .footer-menu {
    gap: 10px;
  }
}

.footer-section__inner .footer-menu__item {
  text-decoration: none;
}

.footer-section__inner .footer-menu__item:hover {
  text-decoration: underline;
}

/*  Footer End  */
/*----------------------------------------------
  // Partials Style End
----------------------------------------------*/
/*----------------------------------------------
  // Pages Style Start
----------------------------------------------*/
/*   Form Start  */
.form-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .form-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
  }
}

.form-notice .text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  font-size: 14px;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 0;
}

.form-notice .text:not(.form-notice .text:last-child) {
  --gap: 20px;
  padding-right: var(--gap);
  margin-right: var(--gap);
}

.form-notice .text:not(.form-notice .text:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 0;
  background: none;
  border-left: 1px solid #666666;
}

@media screen and (max-width: 991px) {
  .form-notice .text:not(.form-notice .text:last-child)::after {
    display: none;
  }
}

.widget:not(:last-child) {
  margin-bottom: 25px;
}

.widget__title {
  color: #26566e;
  font-size: clamp(1.25rem, 1.0793rem + 0.7282vw, 1.625rem);
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-widget__list {
  list-style: none;
}

.feature-widget__list .icon {
  color: #05C9DE;
  margin-right: 5px;
}

.feature-widget__item {
  padding-bottom: 25px;
  font-weight: 600;
  color: #26566e;
}

.get-help {
  background: -webkit-gradient(linear, left top, left bottom, from(#0290AA), to(#1D5979));
  background: linear-gradient(180deg, #0290AA 0%, #1D5979 100%);
  text-align: center;
  color: white;
  padding: 20px;
  margin-bottom: 30px;
}

.score-from__counter {
  --size: 28px;
  position: absolute;
  left: 30px;
  top: calc(var(--size) / 2 * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  counter-reset: item;
}

.score-from__counter .counter__item {
  width: var(--size);
  height: var(--size);
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #27C4E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #235770;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  counter-increment: item;
}

.score-from__counter .counter__item::after {
  content: counter(item);
}

.score-from__counter .counter__item.active {
  background: #235770;
  border-color: #235770;
  color: white;
}

.score-from__counter .counter__item.complete {
  background-color: #25DEAE;
  border-color: #18daa6;
}

.score-from__counter .counter__item.complete::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  color: #fff;
}

.score-from {
  border: 1px solid #BBE0F5;
  background-color: #fff;
  padding: 30px 30px 20px;
  border-radius: 10px;
  margin-top: 35px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .score-from {
    padding: 20px 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  .score-from {
    padding: 20px 10px 20px;
  }
}

.score-from__header .privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.score-from__header .privacy .text {
  line-height: 1;
}

.score-from__header-text {
  font-size: clamp(0.875rem, 0.8181rem + 0.2427vw, 1rem);
}

.score-from__heading {
  font-weight: 700;
  color: #26576f;
  font-size: clamp(1.125rem, 1.0112rem + 0.4854vw, 1.375rem);
  margin-top: 15px;
  margin-bottom: 5px;
}

.custom-ratio-input {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  min-height: 50px;
  width: 100%;
  height: 100%;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-left: 10px;
}

.custom-ratio-input:hover {
  border-color: rgb(var(--base));
}

.custom-ratio-input .form-check {
  width: 100%;
}

.form-radio-group {
  border: 1px solid #cac8c8;
  border-radius: 10px;
  color: #262626;
  padding: 20px;
}

.form-radio-group__title {
  display: block;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

.form-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: 30px;
}

.form-notice__thumb {
  position: absolute;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
}

.form-notice__content {
  border: 3px solid #1eaeeb;
  border-radius: 10px;
  padding: 15px 0px 10px 20px;
  background-color: #e8f6fd;
  padding-left: 32px;
  padding-right: 10px;
  padding-block: 15px;
}

.form-notice__title {
  font-weight: 800 !important;
  color: #235770 !important;
  font-size: clamp(1.125rem, 1.0681rem + 0.2427vw, 1.25rem) !important;
  margin-bottom: 10px;
}

.form-notice__desc {
  margin-bottom: 0px;
  margin-left: auto;
  color: #60606d;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}

.pay-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.pay-card img {
  max-height: 20px;
  opacity: 0.3;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pay-card img.active {
  opacity: 1;
}

/*   Form End  */
/*Sore Design Start*/
.timeline {
  margin-block: 10px;
  --size: 400px;
  margin-top: 100px;
}

.timeline__list {
  --radius: calc(var(--size) / 2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  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;
  border: 1px solid rgb(var(--base));
  position: relative;
}

.timeline__item {
  position: absolute;
  border-top: 1px solid red;
  border-radius: 10px;
}

.timeline__item:nth-child(1) {
  top: calc(50% - var(--radius) * cos(-90deg));
  left: calc(50% + var(--radius) * sin(-90deg));
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.timeline__item:nth-child(2) {
  top: calc(50% - var(--radius) * cos(-45deg));
  left: calc(50% + var(--radius) * sin(-45deg));
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.timeline__item:nth-child(3) {
  top: calc(50% - var(--radius) * cos(0deg));
  left: calc(50% + var(--radius) * sin(0deg));
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.timeline__item:nth-child(4) {
  top: calc(50% - var(--radius) * cos(45deg));
  left: calc(50% + var(--radius) * sin(45deg));
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.timeline__item:nth-child(5) {
  top: calc(50% - var(--radius) * cos(90deg));
  left: calc(50% + var(--radius) * sin(90deg));
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

/*Sore Design End*/
/* =========  Contact page Start  =========*/
.card {
  border: 1px solid rgb(var(--base));
}

.card-header {
  border-bottom: 1px solid rgb(var(--base));
  background-color: rgb(var(--base));
  color: rgb(var(--white));
  padding-block: 10px;
}

.card .information-card__list {
  margin-bottom: 15px;
}

.card .information-card__item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 2px;
}

.card .information-card__item:last-child {
  margin-bottom: 0;
}

.card .information-card__item .name {
  font-weight: 600;
}

.step-info {
  padding: 20px 15px;
}

.complete-text-title {
  font-size: clamp(1.125rem, 1.1819rem - 0.2427vw, 1rem);
  font-weight: 700;
}

@counter-style custom-anlist {
  system: fixed;
  symbols: "🍿" "🍣" "🍨";
  suffix: ">";
}

.custom-list {
  list-style-type: none;
}

.custom-list-item {
  position: relative;
  padding-left: 15px;
}

.custom-list-item::before {
  color: rgb(var(--base));
  content: "\f0da";
  font-weight: 900;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  left: 0;
  font-size: inherit;
}

/* =========  Contact page End  =========*/
/*  Db Start */
.db-header {
  border-bottom: 1px solid rgb(var(--dark), 0.18);
  position: relative;
  z-index: 991;
  background-color: rgb(var(--white));
}

@media screen and (min-width: 991px) {
  .db-header {
    padding-bottom: 30px;
  }
}

.db-header .navbar-toggler {
  position: relative;
  font-size: 24px;
  line-height: 1;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid rgb(var(--border));
}

.db-header .navbar-toggler[aria-expanded=false]::after {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.db-header .navbar-toggler::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@media screen and (max-width: 991px) {
  .db-header .navbar {
    position: absolute;
    left: 0;
    top: 72px;
    background-color: rgb(var(--white));
  }
}

.db-logo img {
  max-width: 180px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-menu__list {
  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;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .header-menu__list {
    background-color: rgb(var(--white));
    gap: 10px;
    padding-bottom: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 20px;
  }
}

.header-menu__item {
  text-decoration: none;
  color: rgb(var(--black));
  position: relative;
}

.header-menu__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background-color: rgb(var(--base));
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (max-width: 991px) {
  .header-menu__item::after {
    bottom: -5px;
  }
}

.header-menu__item.active {
  color: var(--bs-link-hover-color);
}

.header-menu__item.active::after,
.header-menu__item:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.header-menu .dropdown .header-menu__item::after {
  display: none;
}

.db-layout {
  --sidebar-size: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.db-layout .db-sidebar {
  width: var(--sidebar-size);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  margin-top: -1px;
  position: sticky;
  top: 0;
}

.db-layout .db-sidebar .aside-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.db-layout .db-sidebar .aside-nav__item {
  border: 1px solid rgb(var(--border));
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: hsl(var(--dark));
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.db-layout .db-sidebar .aside-nav__item:hover {
  background-color: rgb(var(--dark), 0.04);
}

.db-layout .db-sidebar .aside-nav__item.active {
  color: rgb(var(--white));
  background-color: rgb(var(--base));
}

.db-layout .db-sidebar .aside-nav__item:not(:last-child) {
  border-bottom: 0;
}

.db-layout .db-sidebar .icon {
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  .db-layout .db-sidebar.sidebar-two .aside-nav__item {
    padding: 10px 20px;
    height: 65px;
    overflow: hidden;
  }

  .db-layout .db-sidebar.sidebar-two .aside-nav__item .text {
    display: none;
    opacity: 0;
    -webkit-animation: FadeOut 0.1s ease-in-out;
    animation: FadeOut 0.1s ease-in-out;
  }
}

@media screen and (max-width: 991px) {
  .db-layout.style-two {
    border-top: 8px solid rgb(var(--border));
  }

  .db-layout.style-two .db-sidebar {
    position: relative;
    padding-right: 65px;
    z-index: 99;
  }

  .db-layout.style-two .db-sidebar .aside-nav {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(var(--white));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .db-layout.style-two .expand-aside .aside-nav {
    min-width: 200px;
  }

  .db-layout.style-two .expand-aside .icon i::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 991px) {
  .db-layout {
    --sidebar-size: 65px;
  }

  .db-layout.aside-expand .sidebar-two .aside-nav__item .text {
    display: block;
    opacity: 1;
    -webkit-animation: FadeIn 0.3s ease-in-out;
    animation: FadeIn 0.3s ease-in-out;
  }

  .db-layout.aside-expand .expand-aside .icon i::before {
    content: "\f060" !important;
  }
}

.backdrop,
.backdrop-aside {
  position: fixed;
  background-color: rgb(var(--black), 0.3);
  inset: 0;
  display: none;
  z-index: 99;
}

.backdrop.show,
.backdrop-aside.show {
  display: block;
}

.db-body {
  padding: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: calc(100% - var(--sidebar-size));
}

@media screen and (max-width: 1399px) {
  .db-body {
    padding: 10px;
  }
}

@media screen and (max-width: 991px) {
  .db-body {
    padding: 0;
  }
}

.widget-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 47px;
  -webkit-box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  padding: 20px 10px;
  border-radius: 10px;
}

@media screen and (max-width: 575px) {
  .widget-card {
    text-align: center;
  }
}

.widget-card__left {
  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;
}

.widget-card__left .widget-card__header {
  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;
}

.widget-card__left .widget-card__header .widget-card__title {
  font-size: clamp(1.5rem, 1.3862rem + 0.4854vw, 1.75rem);
  color: rgb(var(--base));
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  .widget-card__left .widget-card__header .widget-card__title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.widget-card__left .widget-card__header .widget-card__text {
  font-size: 14px;
  color: rgb(var(--dark));
}

.widget-card__left .widget-card__header .refatch-btn {
  font-size: 14px;
  background-color: transparent;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.widget-card__left .widget-card__header .refatch-btn:hover {
  color: rgb(var(--base));
}

.widget-card__right .gauge-container {
  --chart-size: 250px;
  --brown: 30deg;
  --yellow: 60deg;
  --green: 110deg;
  --white: 250deg;
  --red: 340deg;
  --gap: 2deg;
  width: var(--chart-size);
  height: var(--chart-size);
  border-radius: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 575px) {
  .widget-card__right .gauge-container {
    margin-inline: auto;
  }
}

@media screen and (max-width: 991px) {
  .widget-card__right .gauge-container {
    --chart-size: 200px;
  }
}

.widget-card__right .gauge-container::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 0;
  z-index: -2;
  background: conic-gradient(#D32F2F 0deg 72deg, #F57C00 72deg 144deg, #FBC02D 144deg 216deg, #388E3C 216deg 288deg, #1B5E20 288deg 360deg);
}

/* .widget-card__right .gauge-container::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  z-index: -1;
  background: conic-gradient(#f3f3f3 0deg var(--green), #fff var(--green) var(--white), #f3f3f3 var(--white) 360deg);
} */

.widget-card__author {
  margin-bottom: 0;
  margin-top: -28px;
  font-size: 14px;
  color: rgb(var(--black), 0.5);
}

@media screen and (max-width: 575px) {
  .widget-card__author {
    margin-top: 0px;
  }
}

.widget-card__author .company-name {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
}

.widget-card__author .company-name:hover {
  text-decoration: underline;
  opacity: 1;
}

.widget-card .gauge-cover {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  background-color: white;
  padding: 20px;
  position: relative;
}

.widget-card .gauge-cover__inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  padding: 10px;
  border: 1px solid rgb(var(--border));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.widget-card .gauge-cover__inner .score {
  font-size: clamp(1.5rem, 1.3862rem + 0.4854vw, 1.75rem);
  font-weight: 600;
}

.widget-card .gauge-cover .line {
  --rotate: 0deg;
  position: absolute;
  width: 104px;
  height: 90px;
  background: black;
  top: -16px;
  left: 23px;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: rotate(var(--rotate));
  transform: rotate(var(--rotate));
  z-index: -1;
}

.widget-card .score-change {
  font-size: 14px;
}

/*  Db End */
.bank-filter {
  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;
  border: 1px solid rgb(var(--border), 0.5);
  border-inline: 0;
  border-top: 0;
  width: 100%;
  padding: 10px;
  color: rgb(var(--body));
  text-decoration: none;
  min-width: 730px;
  gap: 5px;
}

.bank-filter__item {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgb(var(--border));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-decoration: unset;
  color: unset;
}

.bank-filter__item.active {
  color: var(--bs-link-hover-color);
}


.bank-filter__icon {
  font-size: 20px;
}

.bank-wrapper {
  padding: 10px;
}

.bank-wrapper .bank-card {
  -webkit-box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  box-shadow: 0 0 10px 5px rgb(var(--black), 0.05);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.125rem;
}

.bank-wrapper .bank-card .feature-card {
  position: absolute;
  background-color: rgb(var(--base));
  width: 56px;
  height: 63px;
  left: -28px;
  top: -35px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bank-wrapper .bank-card .feature-card i {
  position: absolute;
  right: 3px;
  bottom: 23px;
  color: #fff;
  font-size: 14px;
}

.bank-wrapper .bank-card .bank-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  row-gap: 10px;
  padding: 20px 15px 0;
}

@media screen and (max-width: 1399px) {
  .bank-wrapper .bank-card .bank-card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bank-wrapper .bank-card .bank-card-body .bank-card__thumb .ratting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-block: 10px;
  font-size: 14px;
}

.bank-wrapper .bank-card .bank-card-body .bank-card__thumb .ratting .number {
  font-weight: 600;
}

.bank-wrapper .bank-card .bank-card-body .bank-card__thumb .ratting .starts {
  color: rgb(var(--warning));
}

.bank-wrapper .bank-card .bank-card-body .bank-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1399px) {
  .bank-wrapper .bank-card .bank-card-body .bank-card__header {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bank-wrapper .bank-card .bank-card-body .bank-card__header-title {
  font-size: clamp(1.125rem, 1.0112rem + 0.4854vw, 1.375rem) !important;
  font-size: 22px;
  margin-bottom: 10px;
}

.bank-wrapper .bank-card .bank-card-body .bank-card__header-btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
  .bank-wrapper .bank-card .bank-card-body .bank-card__header-btn {
    margin-bottom: 20px;
  }

  .bank-wrapper .bank-card .bank-card-body .bank-card__header-btn .btn,
  .bank-wrapper .bank-card .bank-card-body .bank-card__header-btn a {
    width: 100%;
  }
}

.bank-wrapper .bank-card .bank-card-body .bank-card__header-text {
  color: rgb(var(--black), 0.8);
}

.bank-wrapper .bank-card .bank-card-body .bank-card__content .bank-card__body .bank-card__feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.bank-wrapper .bank-card .bank-card-body .bank-card__content .bank-card__body .bank-card__feature-list .bank-card__feature-item {
  text-align: left;
  border-left: 1px solid rgb(var(--black), 0.2);
  font-size: 14px;
  padding-left: 10px;
}

.bank-wrapper .bank-card .bank-card-body .bank-card__content .bank-card__body .bank-card__feature-list .bank-card__feature-item .title {
  font-weight: 600;
  margin-bottom: 0px;
}

.bank-wrapper .bank-card__footer .accordion {
  margin-bottom: 0;
}

.bank-wrapper .bank-card__footer .accordion .accordion-item {
  margin-bottom: 0;
  border: 0;
  background-color: rgb(var(--black), 0.03);
}

.bank-wrapper .bank-card__footer .accordion .accordion-header {
  background-color: rgb(var(--black), 0.05);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bank-wrapper .bank-card__footer .accordion .accordion-header .accordion-button::after {
  content: "\f078";
}

.bank-wrapper .bank-card__footer .accordion .accordion-header .accordion-button[aria-expanded=true]::after {
  content: "\f077";
}

/*----------------------------------------------
  // Pages Style End
----------------------------------------------*/
/*# sourceMappingURL=main.css.map */