#fincrif-products .product-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

#progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 255, 0.1);
  /* Light blue background for the container */
  z-index: 9999;
  display: none;
  /* Initially hidden */
}

#progress-bar {
  width: 0;
  height: 100%;
  background-color: blue;
  transition: width 0.2s ease;
  /* Faster transition */
}

.product-card-premium {
  background: rgba(242, 247, 255);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(218, 218, 218, 0.5);
  border-radius: 28px;
  padding: 10px 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  margin: 10px;
  padding: 30px 20px;
  max-height: 170px;
  text-align: center;
  min-height: 170px;
  border-radius: 8px 40px;
  -webkit-box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, .059), 0 8.2px 8.9px -30px rgba(0, 0, 0, .071), 0 25px 40px -30px rgba(0, 0, 0, .2);
  box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, .059), 0 8.2px 8.9px -30px rgba(0, 0, 0, .071), 0 25px 40px -30px rgba(0, 0, 0, .2);

}

.product-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.product-card-link:hover .product-card-premium {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  /* border-color: rgba(255, 255, 255, 0.9); */
  background: rgba(255, 255, 255, 0.98);
  border-color: 1px solid rgba(218, 218, 218, 0.5);
}

.product-card-link:hover .product-card-premium::before {
  opacity: 1;
}

.pc-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.product-svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
  transition: transform 0.5s ease;
}

.product-card-link:hover .pc-icon-box {
  transform: scale(1.1) rotate(8deg);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.pc-title {
  font-weight: 800;
  font-size: 14px;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.product-card-link:hover .pc-title {
  color: #0153b9;
}

@media (max-width: 1200px) {
  .pc-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .product-card-premium {
    padding: 32px 16px;
    border-radius: 20px;
  }

  .pc-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .product-svg {
    width: 30px;
    height: 30px;
  }

  .pc-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .pc-explore-label {
    font-size: 0.75rem;
    opacity: 0.8;
    transform: translateY(0);
  }
}

.card-shadow-ads {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.card-shadow-ads:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bank-info-label {
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.bank-info-value {
  font-size: 14px;
  color: #333333;
}

.badge {
  font-size: 0.9em;
  color: #ffffff;
  background-color: #82a522;
  padding: 5px 10px;
  border-radius: 10px;
}

.value-description {
  font-size: 14px;
  color: #666666;
}

.btn-primary-ads {
  background-color: #02903e;
  border: 1px solid #02903e;
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(40, 167, 69, 0.1);
}

.btn-primary-ads:hover {
  background-color: #02903e;
  border-color: #02903e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(40, 167, 69, 0.2);
}

.btn-compare {
  background-color: #0153b9;
  border: 1px solid #0153b9;
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-compare:hover {
  background-color: #0153b9;
  border-color: #0153b9;
  color: #fff;
  transform: translateY(-1px);
}

.btn-compare.active {
  background-color: #007bff;
  border-color: #0056b3;
  color: #ffffff;
}

@media (max-width: 768px) {
  .card-shadow-ads .row>div {
    margin-bottom: 15px;
  }

  .btn-primary-ads,
  .btn-compare {
    display: block;
    margin: auto;
    margin-bottom: 10px;
  }
}

.heading {
  font-size: 16px;
  color: #0153b9;
  font-weight: bolder;
}

.vertical-border {
  border-left: 1px solid #cccccc;
  height: 100%;
}

.view-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.view-more:hover {
  background-color: #0056b3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.compare-link {
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.compare-link:hover {
  background-color: #0056b3;
}

.sticky-compare-link {
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 1000;
  display: none;
  padding: 15px 25px;
  background-color: #0153b9;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.sticky-compare-link .compare-count-display {
  color: #fff !important;
}

.sticky-compare-link:hover {
  background-color: #0153b9;
  transform: translateY(-2px);
  color: white;
}

#search-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 14px;
}

#reset-button {
  padding: 8px 16px;
  background-color: #0153b9;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#reset-button:hover {
  background-color: #0153b9;
}

/* Sorting icon */
.sort-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  vertical-align: middle;
  margin-left: 5px;
}

.asc-icon {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #000000 transparent;
}

.desc-icon {
  border-width: 5px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
}

/* ===== Heroes Section Styles ===== */
.heroes-section {
  padding: 38px 0 32px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.heroes-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.heroes-card {
  background: #ffffff;
  padding: 32px 48px;
  text-align: center;
}

.heroes-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px;
}

.heroes-title span {
  color: #0102a2;
}

.heroes-chips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  white-space: nowrap;
}

.heroes-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none;
  font-size: 15px;
  color: #111827;
  transition: all 0.2s ease;
  flex: 0 0 auto;
}

.heroes-chip:hover {
  border-color: #0102a2;
  box-shadow: 0 4px 14px rgba(1, 2, 162, 0.14);
  transform: translateY(-1px);
}

.heroes-chip span:first-child {
  font-size: 20px;
}

/* ========= Heroes Responsive ========= */
@media (max-width: 992px) {
  .heroes-card {
    padding: 28px 24px;
  }

  .heroes-chips {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .heroes-section {
    padding: 24px 0 32px;
  }

  .heroes-card {
    padding: 24px 18px;
  }

  .heroes-title {
    font-size: 20px;
  }
}

/* ================== Stats + Partner Logos Section ================== */
.fc-metrics-wrap {
  margin-top: 1%;
  margin-left: 4.3%;
  margin-right: 4.3%;
  background: #f8fafc;
  padding: 64px 16px 72px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #e5e7eb;
}

.fc-metrics-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.fc-metrics-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #070707;
}

.fc-metrics-head p {
  text-align: center;
  margin: 0 0 32px;
  font-size: 16px;
  color: #070707;
}

/* Stats grid */
.fc-metrics-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 56px;
  margin-bottom: 40px;
}

.fc-metric {
  position: relative;
  padding: 0 24px;
}

.fc-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 72px;
  background: rgba(148, 163, 184, 0.5);
}

.fc-metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #0153b9;
  margin-bottom: 8px;
}

.fc-metric-label {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: black;
}

/* Partner card – SINGLE clean version (continuous loop) */
.fc-partner-card {
  margin-top: 24px;
}

.fc-partner-slider {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.15);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

/* continuous flow */
.fc-partner-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
  will-change: transform;
}

.fc-partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
}

.fc-partner-item img {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fc-partner-item img:hover {
  transform: scale(1.05);
}

/* keyframes for one-way continuous loop */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================== Metrics + Partner Responsive ================== */
@media (max-width: 768px) {
  .fc-metrics-grid {
    flex-direction: column;
    gap: 24px;
  }

  .fc-metric {
    padding: 0 8px;
  }

  .fc-metric:not(:last-child)::after {
    display: none;
  }

  .fc-metric-value {
    font-size: 26px;
  }

  .fc-partner-track {
    gap: 40px;
    animation-duration: 40s;
  }

  .fc-partner-item img {
    max-height: 34px;
  }
}

.lazy-logo {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.lazy-logo.loaded {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

/* Chart container */
.contact {
  margin-top: 1%;
}

.mobile-chart {
  max-width: 320px;
  width: 100%;
  margin: auto;
}

/* Canvas must be responsive */
#pieChart {
  width: 100% !important;
  height: 100% !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #262728 !important;
}

/* Buttons glow */
.btn-attention {
  position: relative;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
}

@keyframes blinkGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

@keyframes blinkBorder {

  0%,
  100% {
    border-color: #0d6efd;
  }

  50% {
    border-color: #ffc107;
  }
}

.blink {
  animation:
    blinkGlow 1.5s ease-out infinite,
    blinkBorder 1.5s linear infinite;
}

/* Force dark text in table */
.table-dark-text thead th,
.table-dark-text tbody td {
  color: #212529 !important;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 576px) {
  .mobile-input-group {
    width: 100% !important;
  }

  .mobile-range {
    margin-top: 0.35rem;
  }

  /* Better slider touch target */
  .form-range::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }

  .form-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }

  .form-range {
    height: 1.5rem;
  }

  /* Prevent iOS zoom on focus */
  input[type="number"] {
    font-size: 16px;
  }

  /* Buttons: 2 per row, full width */
  .mobile-btn-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .mobile-btn-grid .btn {
    width: 100%;
  }

  /* Chart max width on small screens */
  .mobile-chart {
    max-width: 320px;
    width: 100%;
  }

  /* Show the selected value below sliders on phones */
  #loan-amt-text-sm,
  #loan-period-text-sm,
  #interest-rate-text-sm {
    color: #212529;
  }

  /* Stacked table (card-like rows) */
  .table-stack {
    width: 100%;
  }

  .table-stack tbody tr {
    display: block;
    margin: 0.5rem 0;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
  }

  .table-stack tbody td {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #f1f3f5;
  }

  .table-stack tbody td:last-child {
    border-bottom: 0;
  }

  .table-stack tbody td::before {
    content: attr(data-th);
    font-weight: 600;
    color: #6c757d;
  }
}

/* ===== FINCRIF Recent Blogs (v2) ===== */
.fincrif-blogs__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
}

.fincrif-blogs__title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 68px;
  background: linear-gradient(90deg, #82a522, #0102a2);
  border-radius: 2px;
}

.fincrif-blogs__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  color: #0153b9;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid #dbe3f0;
  transition: 0.25s ease;
  background: #fff;
}

.fincrif-blogs__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(1, 2, 162, 0.12);
}

.fincrif-blogs__cta svg {
  width: 18px;
  height: 18px;
}

/* Cards */
.fincrif-card {
  background: #fff;
  border: 1px solid #e7ebf3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(1, 2, 162, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  height: 100%;
}

.fincrif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(1, 2, 162, 0.14);
  border-color: #d5dff0;
}

/* Image (lazy) */
.fincrif-card__img {
  display: block;
  width: 100%;
  height: auto;
  background: #eef2f7;
  filter: blur(8px);
  transition:
    filter 0.35s ease,
    transform 0.45s ease;
}

.fincrif-card:hover .fincrif-card__img {
  transform: scale(1.03);
}

.fincrif-card__img.is-loaded {
  filter: blur(0);
}

/* Body */
.fincrif-card__body {
  padding: 1rem 1rem 1.15rem;
}

.fincrif-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  color: #52607a;
}

.fincrif-meta__pill {
  background: #f0f6ff;
  color: #0102a2;
  border: 1px solid #d8e3f7;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
}

.fincrif-meta__date {
  color: #5b6a85;
}

.fincrif-card__title {
  font-size: 1.05rem;
  line-height: 1.35;
  color: #0b1a39;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fincrif-card__excerpt {
  color: #485a77;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400 !important;
  font-style: normal;
}

.fincrif-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-weight: 800;
  color: #0153b9;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.fincrif-card__read:hover {
  color: #0153b9;
  border-color: #0153b9;
}

.fincrif-link {
  text-decoration: none;
}

.fincrif-link:focus-visible {
  outline: 3px solid rgba(1, 2, 162, 0.35);
  outline-offset: 2px;
  border-radius: 1rem;
}

:root {
  --accent: #82a522;
}

/* ====== Layout / viewport ====== */
.ts-viewport {
  margin: -1%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
  border-radius: 16px;
  padding: 6px;
}

.ts-viewport::-webkit-scrollbar {
  display: none;
}

.ts-track {
  display: flex;
  gap: 16px;
  padding: 6px 6px 10px;
}

.ts-cell {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-margin-inline: 6px;
}

/* Responsive: 2 on sm, 3 on lg, 4 on xl+ */
@media (min-width: 576px) {
  .ts-cell {
    flex-basis: 48%;
  }
}

@media (min-width: 992px) {
  .ts-cell {
    flex-basis: 32%;
  }
}

@media (min-width: 1200px) {
  .ts-cell {
    flex-basis: 24%;
  }
}

/* ====== Card (only screenshot) ====== */
.ts-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4e8f1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ts-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

/* ====== Screenshot area (top/bottom thoda crop) ====== */
.ts-shot-wrap {
  position: relative;
  background: #000;
  overflow: hidden;
  aspect-ratio: 9/15;
}

.ts-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ====== Dots ====== */
.ts-dots .ts-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin: 0 3px;
  border: 0;
  background: var(--accent);
  opacity: 0.45;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.ts-dots .ts-dot:is(:hover, :focus) {
  opacity: 0.8;
  transform: scale(1.06);
  box-shadow: 0 0 0 0.18rem rgba(130, 165, 34, 0.18);
  outline: none;
}

.ts-dots .is-active {
  opacity: 1;
}

#tsPrev:focus,
#tsNext:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 2, 162, 0.15) !important;
}

@media (prefers-reduced-motion: reduce) {
  .ts-card {
    transition: none;
  }
}

.fincrif-blogs {
 background: #f8fafc;
}
/* ================== 🔍 Lightbox styles ================== */
.ts-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1050;
}

.ts-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ts-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.ts-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  border: none;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111827;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.ts-lightbox-close:hover {
  background: #f3f4f6;
}

.faq-title {
  color: #0b1220 !important;
  font-size: 18px;
}

.accordion .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: #495057;
}

.confirm {
  margin-top: 0.6em;
  background-color: green;
  padding: 10px;
  font-weight: bolder;
}

#loginform .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

#loginform .modal-body {
  padding: 0;
}

#loginform .login-modal-image {
  object-fit: cover;
  height: 100%;
  min-height: 400px;
}

.footer-bottom {
  background: #222944;
}

.footer-bottom-text {
  color: #fff;
}

.landing-footer {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  left: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#scrollUp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #0153b9;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  z-index: 99999;
  display: none;
}

#scrollUp i {
  font-size: 20px;
}