/*#region ----------------- Animation */
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeLeft {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleZoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- General */
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBlack.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBold.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Bold.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Regular.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Yekan Bakh";
  src: url("../fonts/yekanbakh/YekanBakhFaNum-Light.woff2") format("woff2"), url("../fonts/yekanbakh/YekanBakhFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*,
::before,
::after {
  outline: none !important;
}

body {
  font-family: "Yekan Bakh" !important;
  font-weight: 400;
  font-size: 16px;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  color: #262628;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: "Yekan Bakh" !important;
}

p {
  color: #6c6c73;
}

hr {
  border-top: #e2e8f0 solid 1px;
}

img {
  font-size: 12px;
  font-weight: 300;
}

svg,
img {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

input[type=number] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

::-moz-selection {
  background-color: #2d7aff;
  color: white;
}

::selection {
  background-color: #2d7aff;
  color: white;
}

.shadow-primary {
  box-shadow: 0 4px 40px rgba(45, 122, 255, 0.4);
}

/*#endregion -------------- General */
/*#region ----------------- Container */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container,
  .container-sm {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1000px;
  }
}
@media (min-width: 1280px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1220px;
  }
}
@media (min-width: 1536px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1350px;
  }
}
/*#endregion -------------- Container */
/*#region ----------------- Buttons */
.btn {
  font-size: 14px;
  padding: 0.6rem 1.2rem;
  border-radius: 999rem;
  border: 1px solid transparent;
  box-shadow: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  height: 44px;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .lucide {
  width: 22px;
  height: 22px;
  color: #6c6c73;
  transition: all 0.2s ease-in-out;
}
.btn:disabled {
  background-color: #eaf2ff !important;
  border: 1px solid #eaf2ff !important;
  color: #6c6c73 !important;
  cursor: not-allowed !important;
}
.btn:disabled .lucide {
  color: #9e9e9e !important;
}
.btn.text-right {
  text-align: right;
}
.btn.text-left {
  text-align: left;
}
.btn.is-small {
  font-size: 13px;
  padding: 0.5rem 1rem;
  min-width: unset;
  height: 38px;
}
.btn.is-small .lucide {
  width: 18px;
  height: 18px;
}
.btn.is-small.icon-right {
  padding-right: 2.5rem !important;
}
.btn.is-small.icon-right .lucide {
  right: 10px;
  top: 9px;
}
.btn.is-small.icon-left {
  padding-left: 2.5rem !important;
}
.btn.is-small.icon-left .lucide {
  left: 10px;
  top: 9px;
}
.btn.is-small.loading::before {
  width: 20px;
  height: 20px;
  top: 10px;
}
.btn.loading {
  padding-right: 3rem;
}
.btn.loading::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  background-color: transparent;
}

.icon-right {
  padding-right: 3rem !important;
}
.icon-right .lucide {
  position: absolute;
  right: 14px;
  top: 10px;
}
.icon-right:hover .lucide {
  right: 10px;
}

.icon-left {
  padding-left: 3rem !important;
}
.icon-left .lucide {
  position: absolute;
  left: 14px;
  top: 10px;
}
.icon-left:hover .lucide {
  left: 10px;
}

.btn-primary {
  background: #2d7aff;
  color: white;
  border-color: #2d7aff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #5694ff;
  color: white;
}
.btn-primary .lucide {
  color: white;
}
.btn-primary.loading::before {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
}
.btn-primary.color-danger {
  background-color: #ec1600;
  color: white;
  border-color: #ec1600;
}
.btn-primary.color-white {
  background-color: white;
  color: #2d7aff;
  border-color: white;
}
.btn-primary.color-white .lucide {
  color: #2d7aff;
}
.btn-primary.color-ghost {
  background-color: rgba(45, 122, 255, 0.1);
  color: #2d7aff;
  border: none;
}
.btn-primary.color-ghost .lucide {
  color: #2d7aff;
}

.btn-secondary {
  background: #30253f;
  color: white;
  border-color: #30253f;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #443459;
  border-color: #443459;
  color: white;
}
.btn-secondary .lucide {
  color: white;
}
.btn-secondary.loading::before {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid white;
}

.btn-primary-outline {
  background: transparent;
  color: #2d7aff;
  border-color: #2d7aff;
}
.btn-primary-outline::before {
  background-color: rgba(45, 122, 255, 0.3);
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background: rgba(45, 122, 255, 0.15);
  color: #2d7aff;
}
.btn-primary-outline .lucide {
  color: #2d7aff;
}
.btn-primary-outline.loading::before {
  border: 3px solid rgba(45, 122, 255, 0.2);
  border-top: 3px solid #2d7aff;
}
.btn-primary-outline.color-gray {
  background-color: white;
  color: #262628;
  border-color: #e2e8f0;
}
.btn-primary-outline.color-gray .lucide {
  color: #6c6c73;
}
.btn-primary-outline.color-gray:hover {
  background-color: #f3f3f5;
}

.btn-secondary-outline {
  background: transparent;
  color: #30253f;
  border-color: #30253f;
}
.btn-secondary-outline::before {
  background-color: rgba(48, 37, 63, 0.3);
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background: rgba(48, 37, 63, 0.15);
  color: #30253f;
}
.btn-secondary-outline .lucide {
  color: #30253f;
}
.btn-secondary-outline.loading::before {
  border: 3px solid rgba(48, 37, 63, 0.2);
  border-top: 3px solid #30253f;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c6c73;
}
.btn-icon .lucide {
  width: 24px;
  height: 24px;
}
.btn-icon.is-big {
  width: 48px;
  height: 48px;
}
.btn-icon.is-small {
  width: 40px;
  height: 40px;
}
.btn-icon.is-small .lucide {
  width: 20px;
  height: 20px;
}
.btn-icon:hover, .btn-icon:focus {
  background-color: #f3f3f5;
  color: #6c6c73;
}
.btn-icon.color- .btn-icon.color-info {
  background-color: #7c78f5;
  color: white;
}
.btn-icon.color- .btn-icon.color-info:hover, .btn-icon.color- .btn-icon.color-info:focus {
  background-color: #5752f2;
}
.btn-icon.color-grey {
  background-color: #f3f3f5;
  color: #6c6c73;
}
.btn-icon.color-grey:hover, .btn-icon.color-grey:focus {
  background-color: #c1d9ff;
}
.btn-icon.color-danger {
  background-color: #ec1600;
  color: white;
}
.btn-icon.color-danger:hover, .btn-icon.color-danger:focus {
  background-color: #c31200;
}
.btn-icon.color-secondary {
  background-color: #30253f;
  color: white;
}
.btn-icon.color-secondary:hover, .btn-icon.color-secondary:focus {
  background-color: #1c1625;
}
.btn-icon.color-warning {
  background-color: #dfc800;
  color: white;
}
.btn-icon.color-warning:hover, .btn-icon.color-warning:focus {
  background-color: #b6a300;
}
.btn-icon.color-primary {
  background-color: #2d7aff;
  color: white;
}
.btn-icon.color-primary:hover, .btn-icon.color-primary:focus {
  background-color: #0460ff;
}

.btn-ghost:hover {
  background-color: #f3f3f5;
}

.btn-collapse {
  width: 100%;
  text-align: right;
  color: #262628;
  position: relative;
}
.btn-collapse .icon {
  transition: all 0.2s ease-in-out;
  transform: rotate(0deg);
}
.btn-collapse .icon.icon-plus {
  transform: unset;
}
.btn-collapse.active .icon {
  transform: rotate(-90deg);
}
.btn-collapse.active .icon.icon-plus {
  transform: unset;
}
.btn-collapse.active .icon.icon-plus::before {
  content: "\f730";
}

.card-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

/*#endregion -------------- Buttons */
/*#region ----------------- Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle .lucide {
  display: block;
  font-size: 22px;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  display: none;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 888;
  text-align: right;
  padding: 5px;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 8px 10px;
  text-decoration: none;
  color: #262628;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: none;
  text-align: right;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(45, 122, 255, 0.1);
  color: #2d7aff;
}
.dropdown .dropdown-menu .dropdown-item:hover .lucide, .dropdown .dropdown-menu .dropdown-item:focus .lucide {
  color: #2d7aff;
}
.dropdown .dropdown-menu .dropdown-item .lucide {
  margin-left: 10px;
  font-size: 18px;
  position: relative;
  top: 3px;
  color: #9e9e9e;
}
.dropdown .dropdown-menu.open {
  display: flex;
}
.dropdown .dropdown-menu.align-right {
  left: unset;
  right: 0;
}

/*#endregion -------------- Dropdown */
/*#region ----------------- Tabs */
.nav-tabs {
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.nav-tabs .nav-link {
  vertical-align: middle;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #6c6c73;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}
.nav-tabs .nav-link.active {
  border-bottom-color: #2d7aff;
  color: #2d7aff;
  font-weight: 600;
}
.nav-tabs .nav-link.active .badge.badge-primary {
  background-color: #30253f;
}
.nav-tabs .nav-link .icon {
  font-size: 16px;
  margin-left: 6px;
}
.nav-tabs .nav-link .badge {
  background-color: #9e9e9e;
}
.nav-tabs.type-fill {
  border: none;
  align-items: center;
  justify-content: center;
  background-color: #2d7aff;
  padding: 8px;
  border-radius: 15px;
}
.nav-tabs.type-fill .nav-link {
  border: none;
  border-radius: 7px;
  color: white;
}
.nav-tabs.type-fill .nav-link.active {
  background-color: white;
  color: #2d7aff;
}
.nav-tabs.nowrap {
  overflow-x: auto;
}
.nav-tabs.nowrap .nav-link {
  white-space: nowrap;
}
.nav-tabs.font-lg .nav-link {
  font-size: 18px;
}
.nav-tabs.type-row {
  flex-direction: column;
  border-bottom: none;
}
.nav-tabs.type-row .nav-link {
  border: none;
  border-right: 4px solid transparent;
  position: relative;
  width: 100%;
  padding: 14px 20px 14px 30px;
}
.nav-tabs.type-row .nav-link.active {
  border-right-color: #2d7aff;
}
.nav-tabs.type-row .nav-link:hover {
  color: #262628;
}

.tab-content {
  margin-top: 15px;
}
.tab-content .tab-pane {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .nav-tabs.type-fill {
    padding: 5px;
    border-radius: 15px;
  }
  .nav-tabs.type-fill .nav-link {
    border-radius: 4px;
    font-size: 14px;
    min-width: unset;
  }
}
@media (max-width: 640px) {
  .nav-tabs.type-fill {
    border-radius: 15px;
  }
  .nav-tabs.type-fill .nav-link {
    font-size: 12px;
  }
}
/*#endregion -------------- Tabs */
/*#region ----------------- Modal Styles */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.modal.show {
  display: flex;
}
.modal .modal-dialog {
  background-color: white;
  width: 500px;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  max-height: 95%;
  z-index: 9999;
  border-radius: 10px;
}
.modal .modal-dialog.show {
  display: flex;
  animation: scaleZoomIn 0.35s ease-in-out;
}
.modal .modal-dialog.modal-sm {
  width: 640px;
}
.modal .modal-dialog.modal-md {
  width: 768px;
}
.modal .modal-dialog.modal-lg {
  width: 1024px;
}
.modal .modal-dialog.modal-xl {
  width: 1280px;
}
.modal .modal-dialog.modal-full {
  width: 100%;
  max-height: 100%;
  height: 100%;
  border-radius: 0;
}
.modal .modal-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
}
.modal .modal-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #262628;
}
.modal .modal-title .lucide {
  margin-left: 10px;
  font-size: 20px;
  color: #6c6c73;
}
.modal .btn-close {
  width: 30px;
  height: 30px;
  background-color: transparent;
  padding: 4px;
  border: none;
  color: #9e9e9e;
}
.modal .btn-close:hover {
  color: #6c6c73;
}
.modal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
  height: 100%;
}
.modal .modal-footer {
  padding: 1rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 575px) {
  .modal .modal-dialog {
    width: 95%;
  }
  .modal .modal-footer {
    flex-direction: column;
  }
  .modal .modal-footer .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .modal .modal-dialog.modal-sm {
    width: 95%;
  }
}
@media (max-width: 992px) {
  .modal .modal-dialog.modal-md {
    width: 95%;
  }
}
@media (max-width: 1199px) {
  .modal .modal-dialog.modal-lg {
    width: 95%;
  }
}
@media (max: 1280px) {
  .modal .modal-dialog.modal-xl {
    width: 95%;
  }
}
/*#endregion -------------- Modal Styles */
/*#region ----------------- Radio */
.form-radio {
  margin: 0.6rem 0;
  position: relative;
}
.form-radio.in-box .form-radio-input:checked ~ .form-radio-label {
  border-color: #2d7aff;
}
.form-radio.in-box .form-radio-label {
  display: block;
  border: 2px solid #e2e8f0;
  padding: 8px 40px 8px 8px;
  border-radius: 10px;
}
.form-radio.in-box .form-radio-label::before {
  top: 12px;
  right: 12px;
}
.form-radio.in-box .form-radio-label::after {
  top: 18px;
  right: 1.25em;
}
.form-radio .form-radio-input {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-radio .form-radio-input:checked ~ .form-radio-label::before {
  background-color: #2d7aff;
  border-color: #2d7aff;
}
.form-radio .form-radio-input:checked ~ .form-radio-label::after {
  background-color: white;
}
.form-radio .form-radio-input:disabled {
  cursor: not-allowed;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label {
  background-color: #eaf2ff;
  cursor: not-allowed;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label h6 {
  opacity: 0.6;
}
.form-radio .form-radio-input:disabled ~ .form-radio-label p {
  opacity: 0.6;
}
.form-radio .form-radio-label {
  font-size: 16px;
  color: #262628;
  padding-right: 30px;
  cursor: pointer;
}
.form-radio .form-radio-label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  border: 2px solid #e2e8f0;
  border-radius: 10rem;
  z-index: 0;
}
.form-radio .form-radio-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.4em;
  top: 0.4em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: transparent;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.radio-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}

/*#endregion -------------- Radio */
/*#region ----------------- Select */
.select-group {
  position: relative;
  margin-bottom: 16px;
}
.select-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.select-group .select {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 999rem;
  font-size: 14px;
  padding: 0.67rem 0.875rem 0.67rem 2rem;
  height: 44px;
  transition: all 0.3s ease-in-out;
  -moz-appearance: none;
       appearance: none;
  background-color: white;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 16px 12px;
}
.select-group .select:hover, .select-group .select:focus {
  border-color: #9e9e9e;
}
.select-group.size-small label {
  font-size: 13px;
}
.select-group.size-small .select {
  padding: 0.544rem 0.875rem;
  height: unset;
  font-size: 14px;
}
.select-group .text-alert {
  font-size: 13px;
  margin-top: 5px;
}
.select-group .text-alert.error {
  color: #ec1600;
}
.select-group .text-alert.success {
  color: #ec1600;
}

/*#endregion -------------- Select */
/*#region ----------------- Table */
.table-custom .table-header {
  display: grid;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem 0.7rem 0 0;
}
.table-custom .table-header .table-header-item {
  font-size: 14px;
  font-weight: 600;
  color: #262628;
  padding: 15px;
}
.table-custom .table-body {
  border-right: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 0.75rem 0.7rem;
}
.table-custom .table-body .table-row {
  display: grid;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.table-custom .table-body .table-row:hover {
  background-color: #eaf2ff;
}
.table-custom .table-body .table-row:hover:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}
.table-custom .table-body .t-item {
  padding: 15px;
}
.table-custom .table-body .t-title {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
}
.table-custom .table-body .t-desc {
  font-size: 14px;
  font-weight: 400;
  color: #262628;
}
.table-custom .table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}
.table-custom .table-footer .result {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.table-custom .table-footer .result h6 {
  font-size: 14px;
  margin-bottom: 0;
  color: #6c6c73;
}
.table-custom .table-footer .result .number {
  font-size: 14px;
  color: #6c6c73;
}

.table-responsive {
  overflow-x: auto;
}

@media (max-width: 1024px) {
  .table-custom .table-header {
    display: none;
    grid-template-columns: 100% !important;
  }
  .table-custom .table-body {
    border-top: 1px solid #e2e8f0;
    border-radius: 0.7rem;
  }
  .table-custom .table-body .table-row {
    grid-template-columns: 100% !important;
    padding: 8px 0;
  }
  .table-custom .table-body .table-row:first-child {
    border-top: none;
  }
  .table-custom .table-body .table-row:hover {
    background-color: #eaf2ff;
  }
  .table-custom .table-body .table-row:hover:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .table-custom .table-body .t-title {
    display: block;
    padding-left: 20px;
  }
  .table-custom .table-body .t-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
  }
  .table-custom .table-body .t-desc {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table-custom .table-footer {
    flex-direction: column;
  }
  .table-custom .table-footer .result {
    margin-bottom: 10px;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .table-custom .table-footer .result h6 {
    font-size: 12px;
  }
  .table-custom .table-footer .result .number {
    font-size: 12px;
  }
  .table-custom .table-footer .result .select-group .select {
    height: 40px;
    padding: 0.5rem 0.8rem 0.5rem 2rem;
  }
  .table-custom .table-footer .pagination .select-group .select {
    height: 40px;
    padding: 0.5rem 0.8rem 0.5rem 2rem;
  }
  .table-custom .table-footer .pagination .btn-icon {
    width: 40px;
    height: 40px;
  }
  .table-custom .table-footer .pagination .btn-icon .lucide {
    width: 18px;
    height: 18px;
  }
}
/*#endregion -------------- Table */
/*#region ----------------- Input */
.input-group {
  position: relative;
  margin-bottom: 16px;
}
.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.input-group .input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 999rem;
  font-size: 14px;
  padding: 0.65rem 3rem 0.65rem 1rem;
  transition: all 0.3s ease-in-out;
  height: 44px;
  background-color: white;
}
.input-group .input:hover, .input-group .input:focus {
  border-color: #9e9e9e;
}
.input-group .input:hover ~ .icon, .input-group .input:focus ~ .icon {
  color: #6c6c73;
}
.input-group .input:disabled {
  background-color: #eaf2ff;
}
.input-group .icon {
  position: absolute;
  top: 26px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9e9e9e;
  transition: all 0.3s ease-in-out;
}
.input-group .icon .lucide {
  display: flex;
}
.input-group .pcalBtn {
  width: 44px;
  height: 44px;
}
.input-group.no-icon .input {
  padding-right: 0.7rem !important;
}
.input-group.no-label .icon {
  top: 0;
}
.input-group.no-label .pcalBtn {
  top: 0;
  left: 0;
}
.input-group.text-center .input {
  text-align: center;
}
.input-group.big-font-size .input {
  font-size: 18px;
}
.input-group.small label {
  font-size: 13px;
}
.input-group.small .input {
  font-size: 14px;
  padding: 0.544rem 3rem 0.544rem 0.7rem;
}
.input-group.small .pcalBtn {
  width: 40px;
  height: 40px;
}

/*#endregion -------------- Input */
/*#region ----------------- Checkbox */
.checkbox-group {
  margin: 10px 0;
}
.checkbox-group .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #262628;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-group .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.3em;
  height: 1.3em;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  float: right;
  background-color: white;
}
.checkbox-group .form-check-input::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGVjay1pY29uIGx1Y2lkZS1jaGVjayI+PHBhdGggZD0iTTIwIDYgOSAxN2wtNS01Ii8+PC9zdmc+");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.checkbox-group .form-check-input:checked {
  border-color: #2d7aff;
  background-color: #2d7aff;
}
.checkbox-group .form-check-input:checked::before {
  opacity: 1;
}
.checkbox-group .form-check-input:disabled {
  background-color: #f3f3f5;
  border-color: #f3f3f5;
}
.checkbox-group .form-check-input:disabled.checked {
  opacity: 0.6;
  border-color: #2d7aff;
  background-color: #2d7aff;
}
.checkbox-group .form-check-input:disabled.checked::before {
  opacity: 1;
}
.checkbox-group .form-check-input:disabled.checked ~ .form-check-label {
  cursor: default;
  color: #6c6c73;
}
.checkbox-group .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  color: #6c6c73;
}
.checkbox-group .form-check-input:hover, .checkbox-group .form-check-input:focus {
  box-shadow: none;
}
.checkbox-group .form-check-input.checked {
  border-color: #2d7aff;
  background-color: #2d7aff;
}
.checkbox-group .form-check-input.checked::before {
  opacity: 1;
}

/*#endregion -------------- Checkbox */
/*#region ----------------- Switch */
.form-switch .form-switch-input {
  display: none;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::before {
  background-color: #2d7aff;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::after {
  right: 2px;
  background-color: white;
}
.form-switch .form-switch-input.checked ~ .form-switch-label::before {
  background-color: #2d7aff;
}
.form-switch .form-switch-input.checked ~ .form-switch-label::after {
  right: 2px;
  background-color: white;
}
.form-switch .form-switch-input:disabled {
  cursor: not-allowed !important;
}
.form-switch .form-switch-input:disabled:checked ~ .form-switch-label {
  cursor: not-allowed !important;
  opacity: 0.6;
}
.form-switch .form-switch-input:disabled:checked ~ .form-switch-label::before {
  background-color: #2d7aff;
  opacity: 0.6;
}
.form-switch .form-switch-label {
  position: relative;
  padding-right: 40px;
  font-size: 16px;
  color: #262628;
  cursor: pointer;
}
.form-switch .form-switch-label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  display: inline-block;
  width: 32px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10rem;
  z-index: 0;
}
.form-switch .form-switch-label::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #eaf2ff;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

/*#endregion -------------- Switch */
/*#region ----------------- Textarea */
.textarea-group {
  position: relative;
  margin-bottom: 16px;
}
.textarea-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c6c73;
  margin-bottom: 5px;
}
.textarea-group .textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 16px;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.textarea-group .textarea:hover, .textarea-group .textarea:focus {
  border-color: #9e9e9e;
}

/*#endregion -------------- Textarea */
/*#region ----------------- Navbar */
.mynavbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}
.mynavbar .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mynavbar .nav-logo a {
  display: block;
  position: relative;
  width: 100%;
}
.mynavbar .nav-links {
  padding: 0 20px;
}
.mynavbar .nav-links ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mynavbar .nav-links ul li {
  position: relative;
}
.mynavbar .nav-links ul li a {
  font-size: 16px;
  color: #6c6c73;
  display: block;
  padding: 10px;
  position: relative;
}
.mynavbar .nav-links ul li a:hover {
  color: #262628;
}
.mynavbar .nav-links ul li.have-child {
  padding-left: 10px;
}
.mynavbar .nav-links ul li.have-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236c6c73%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide-chevron-down%22%3E%3Cpath%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 16px;
}
.mynavbar .nav-links ul li.have-child:hover > ul {
  display: flex;
}
.mynavbar .nav-links ul li.have-child ul {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 10px 0;
  width: auto;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  gap: 0;
  animation: swipeupsmall 0.3s ease-in-out;
}
.mynavbar .nav-links ul li.have-child ul li {
  display: block;
  width: 100%;
}
.mynavbar .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mynavbar .nav-actions .item {
  margin-right: 10px;
}
.mynavbar .nav-actions .item:first-child {
  margin-right: 0;
}
.mynavbar .nav-actions .btn-primary:hover.icon-right .lucide {
  right: 14px;
}
.mynavbar .nav-actions .btn-primary:hover.icon-left .lucide {
  right: 14px;
}
.mynavbar .mobile-menu {
  display: none;
}
.mynavbar .btn-show-mobile-menu {
  width: 48px;
  height: 48px;
  padding: 2px;
  border-radius: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #262628;
}
.mynavbar .btn-show-mobile-menu .lucide {
  display: flex;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -100%;
  max-height: 100dvh;
  height: 100dvh;
  width: 300px;
  z-index: 2002;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
#sidebar-menu.active {
  right: 0;
}
#sidebar-menu .side-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#sidebar-menu .sidebar-header {
  padding: 2rem 1rem;
  position: relative;
  flex-shrink: 0;
  position: relative;
}
#sidebar-menu .sidebar-header .btn-close-menu {
  position: absolute;
  left: 10px;
  top: 24px;
  width: 40px;
  height: 40px;
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  padding: 0;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sidebar-menu .sidebar-header .btn-close-menu:hover {
  opacity: 1;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
  width: 100px;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sidebar-menu .sidebar-body {
  height: 100%;
  overflow-y: auto;
  flex: 1 1 auto;
  padding-bottom: 40px;
}
#sidebar-menu .sidebar-body .item a {
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #262628;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .sidebar-body .item a:hover {
  color: #2d7aff;
}
#sidebar-menu .sidebar-body .item a .lucide {
  margin-left: 10px;
  color: #2d7aff;
  width: 20px;
  height: 20px;
  position: relative;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 1024px) {
  .mynavbar .inner {
    grid-template-columns: 64px auto 1fr;
    padding: 10px;
  }
  .mynavbar .nav-links {
    display: none;
  }
  .mynavbar .mobile-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .mynavbar .inner {
    grid-template-columns: 1fr 100px 1fr;
    padding: 5px;
  }
  .mynavbar .nav-actions .btn-primary {
    padding: 0 !important;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mynavbar .nav-actions .btn-primary .text {
    display: none;
  }
  .mynavbar .nav-actions .btn-primary.icon-right .lucide, .mynavbar .nav-actions .btn-primary.icon-left .lucide {
    position: unset;
    right: unset;
    top: unset;
    left: unset;
    bottom: unset;
  }
}
@media (max-width: 350px) {
  #sidebar-menu {
    width: 100%;
    right: -100%;
  }
  #sidebar-menu.active {
    right: 0;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Hero */
:root {
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-ring: rgba(255, 255, 255, 0.5);
  --glass-glow: rgba(180, 220, 255, 0.15);
  --dot: rgba(255, 255, 255, 0.35);
}

#bubbleScene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
#bubbleScene .goo-wrap {
  filter: url(#goo);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%), var(--glass-bg);
  box-shadow: inset 0 1px 2px var(--glass-ring), 0 6px 18px -8px var(--glass-glow);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid var(--glass-ring);
  overflow: hidden;
  transition: transform 0.2s ease-out;
}
.bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.bubble::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: radial-gradient(10px 10px at 40% 40%, var(--dot), transparent 50%), radial-gradient(6px 6px at 60% 70%, var(--dot), transparent 50%);
  opacity: 0.15;
  animation: drift 10s ease-in-out infinite;
}
.bubble.bubble1 {
  width: 180px;
  height: 180px;
  left: -50px;
  top: 10px;
}
.bubble.bubble2 {
  width: 94px;
  height: 94px;
  left: 60px;
  top: 135px;
}
.bubble.bubble3 {
  width: 180px;
  height: 180px;
  right: 20%;
  top: 10px;
}
.bubble.bubble4 {
  width: 120px;
  height: 120px;
  right: -50px;
  top: 180px;
}
.bubble.bubble5 {
  width: 60px;
  height: 60px;
  right: 40px;
  top: 190px;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(6%, -6%) rotate(5deg);
  }
}
.hero-home {
  overflow: hidden;
  min-height: 100vh;
  padding-top: 180px;
  position: relative;
}
.hero-home .section-inner {
  position: relative;
  z-index: 10;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/front/images/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity: 0.2;
}
.hero-home .text-content {
  text-align: center;
  width: 800px;
  margin: 0 auto;
}
.hero-home .text-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-home .text-content h1 span {
  position: relative;
  color: #2d7aff;
}
.hero-home .text-content h1 span::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 12px;
  background-image: url(/front/images/scratch-primary.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.hero-home .media-content {
  width: 700px;
  margin: 1rem auto 0 auto;
}

@media (max-width: 1024px) {
  .hero-home {
    padding-top: 160px;
  }
  .hero-home .text-content,
  .hero-home .media-content {
    width: 100%;
  }
  .hero-home .text-content h1 {
    font-size: 32px;
  }
  .bubble.bubble1 {
    width: 150px;
    height: 150px;
    left: -50px;
    top: 10px;
  }
  .bubble.bubble2 {
    width: 74px;
    height: 74px;
    left: 60px;
    top: 135px;
  }
  .bubble.bubble3 {
    width: 150px;
    height: 150px;
    right: 20%;
    top: 10px;
  }
  .bubble.bubble4 {
    width: 100px;
    height: 100px;
    right: -50px;
    top: 120px;
  }
  .bubble.bubble5 {
    width: 40px;
    height: 40px;
    right: 30px;
    top: 120px;
  }
}
@media (max-width: 768px) {
  .hero-home {
    padding-top: 150px;
  }
  .hero-home .text-content h1 {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .hero-home .text-content h1 span::before {
    bottom: -5px;
    width: 100%;
    height: 12px;
  }
  .hero-home .text-content p {
    font-size: 14px;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 2.5rem;
}
.page-title .title-inner {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}
.page-title.align-right .title-inner {
  width: 100%;
  text-align: right;
  margin: 0;
}
.page-title h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-title h2 span {
  color: #2d7aff;
  margin: 0 5px;
}

@media (max-width: 1024px) {
  .page-title .title-inner {
    width: 100%;
  }
  .page-title h2 {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .page-title p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .page-title h2 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Partners */
.swiper-partners .thumb {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.3;
  transition: all 0.2s ease-in-out;
  padding: 0 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-partners .thumb:hover {
  opacity: 1;
}
.swiper-partners .thumb img {
  width: 100%;
}
.swiper-partners .swiper-button-next,
.swiper-partners .swiper-button-prev {
  width: 34px;
  height: 34px;
  background-color: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.swiper-partners .swiper-button-next::after,
.swiper-partners .swiper-button-prev::after {
  font-size: 16px;
  color: #6c6c73;
}

@media (max-width: 1024px) {
  .swiper-partners .thumb {
    padding: 0 20px;
  }
}
/*#endregion -------------- Partners */
/*#region ----------------- Services */
.card-service {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  height: 300px;
}
.card-service.bg-primary {
  background: linear-gradient(45deg, #1453c0, #2d7aff);
}
.card-service.bg-primary .text h3 {
  color: white;
}
.card-service.bg-primary .text p {
  color: rgba(255, 255, 255, 0.7);
  height: unset;
  -webkit-line-clamp: 4;
}
.card-service.bg-primary .text .btns-action {
  text-align: right;
  margin-top: 2rem;
}
.card-service.have-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-service.have-img .text {
  width: 60%;
  flex: 0 0 60%;
}
.card-service.have-img .image {
  width: 40%;
  flex: 0 0 40%;
}
.card-service.have-pattern {
  background: #f3f3f5;
}
.card-service.have-pattern::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(/front/images/pattern-wavy-lines-primary.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0.03;
}
.card-service.have-pattern.pattern-white {
  background: linear-gradient(45deg, #57b8ff, #82caff);
}
.card-service.have-pattern.pattern-white::before {
  background-image: url(/front/images/pattern-wavy-lines-white.svg);
  opacity: 0.06;
}
.card-service.have-pattern.pattern-white .text h3 {
  color: white;
}
.card-service.have-pattern.pattern-white .text p {
  color: rgba(255, 255, 255, 0.8);
}
.card-service .text {
  padding: 40px;
  position: relative;
}
.card-service .text h3 {
  font-size: 22px;
  font-weight: 600;
  color: #262628;
  margin-bottom: 1rem;
}
.card-service .text p {
  font-size: 14px;
  color: #6c6c73;
  height: 63px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-service .text .btns-action {
  text-align: left;
  margin-top: 5rem;
}
.card-service .image .img-inner {
  width: 300px;
  margin: 0 auto;
}
.card-service .image .img-inner img {
  width: 100%;
}

.service-card {
  background-color: white;
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 30px 30px 0 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.service-card h2 {
  font-size: 18px;
  font-weight: 600;
}
.service-card .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #2d7aff;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0px 5px 45px rgba(45, 122, 255, 0.4);
  position: relative;
  top: 25px;
  transition: all 0.2s ease-in-out;
}
.service-card:hover .thumb {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .card-service {
    height: 250px;
  }
  .card-service.have-img {
    flex-direction: column;
    height: unset;
  }
  .card-service.have-img .text {
    width: 100%;
    padding-bottom: 10px;
  }
  .card-service.have-img .text .btns-action {
    text-align: center;
  }
  .card-service.have-img .image {
    width: 100%;
    flex: 0 0 100%;
  }
  .card-service .text {
    padding: 30px;
  }
  .card-service .text h3 {
    font-size: 20px;
  }
  .card-service .text .btns-action {
    margin-top: 3rem;
  }
  .card-service .image .img-inner {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .card-service {
    height: auto;
  }
  .card-service .text {
    padding: 25px;
  }
  .card-service .text h3 {
    font-size: 18px;
  }
  .card-service .text p {
    font-size: 13px;
    height: unset;
    text-align: justify;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: unset;
  }
  .card-service .text .btns-action {
    margin-top: 2rem;
  }
  .card-service .image .img-inner {
    width: 200px;
  }
  .service-card {
    margin-bottom: 3rem;
  }
  .service-card .thumb {
    width: 70px;
    height: 70px;
    padding: 18px;
    top: 25px;
  }
  .service-card h2 {
    font-size: 16px;
  }
}
/*#endregion -------------- Services */
/*#region ----------------- Levels */
.finopol-levels-section {
  background-color: #eaf2ff;
  padding: 90px 0 50px 0;
}

.card-level {
  padding: 25px 25px 50px 25px;
  border-radius: 25px;
  position: relative;
  margin-bottom: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
}
.card-level:hover {
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.card-level h3 {
  font-size: 18px;
  font-weight: 600;
  color: #262628;
  text-align: center;
  margin-bottom: 1rem;
}
.card-level p {
  font-size: 14px;
  text-align: center;
  min-height: 64px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-level .number {
  position: absolute;
  bottom: -27px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-level .number span {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  background-color: #2d7aff;
}

@media (max-width: 1024px) {
  .card-level h3 {
    font-size: 18px;
  }
  .card-level p {
    font-size: 13px;
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  .card-level {
    padding: 20px 15px 50px 15px;
  }
  .card-level p {
    min-height: unset;
  }
}
/*#endregion -------------- Levels */
/*#region ----------------- Comments */
.user-comments {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px 0;
}
.user-comments::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(/front/images/comment-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity: 0.1;
}
.user-comments .section-inner {
  width: 800px;
  margin: 0 auto;
  position: relative;
}

.swiper-comments .swiper-slide {
  padding: 30px;
}
.swiper-comments .swiper-button-next,
.swiper-comments .swiper-button-prev {
  width: 34px;
  height: 34px;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.swiper-comments .swiper-button-next::after,
.swiper-comments .swiper-button-prev::after {
  font-size: 16px;
  color: #6c6c73;
}

.card-comment {
  background-color: white;
  padding: 20px;
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  position: relative;
}
.card-comment::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22lucide%20lucide-quote-icon%20lucide-quote%22%3E%3Cpath%20d%3D%22M16%203a2%202%200%200%200-2%202v6a2%202%200%200%200%202%202%201%201%200%200%201%201%201v1a2%202%200%200%201-2%202%201%201%200%200%200-1%201v2a1%201%200%200%200%201%201%206%206%200%200%200%206-6V5a2%202%200%200%200-2-2z%22%2F%3E%3Cpath%20d%3D%22M5%203a2%202%200%200%200-2%202v6a2%202%200%200%200%202%202%201%201%200%200%201%201%201v1a2%202%200%200%201-2%202%201%201%200%200%200-1%201v2a1%201%200%200%200%201%201%206%206%200%200%200%206-6V5a2%202%200%200%200-2-2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 0.1;
}
.card-comment .c-header {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
}
.card-comment .c-header .thumb {
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}
.card-comment .c-header .thumb img {
  width: 100%;
}
.card-comment .c-header .info {
  padding-right: 12px;
}
.card-comment .c-header .info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card-comment .c-header .info h4 {
  color: #6c6c73;
  font-size: 14px;
  margin-bottom: 0;
}
.card-comment .c-body {
  background-color: #f3f3f5;
  padding: 20px;
  border-radius: 10px;
  margin-top: 1.5rem;
}
.card-comment .c-body .title {
  font-size: 16px;
  font-weight: 600;
  color: #262628;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.card-comment .c-body p {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .user-comments .section-inner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .card-comment .c-header {
    grid-template-columns: 64px auto;
  }
  .card-comment .c-header .info h3 {
    font-size: 14px;
  }
  .card-comment .c-header .info h4 {
    font-size: 12px;
  }
  .card-comment .c-body .title {
    font-size: 14px;
  }
  .card-comment .c-body p {
    font-size: 12px;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Blogs */
.card-blog .card-inner {
  display: block;
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 10px;
}
.card-blog .thumb img {
  width: 100%;
  border-radius: 10px;
}
.card-blog .info {
  margin-top: 10px;
}
.card-blog .info h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.7;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-blog .status .date {
  font-size: 12px;
  color: #9e9e9e;
}
.card-blog .status .see-more {
  padding: 6px 20px;
  background-color: rgba(45, 122, 255, 0.1);
  color: #2d7aff;
  border-radius: 10rem;
  transition: all 0.2s ease-in-out;
}
.card-blog .status .see-more .lucide {
  width: 20px;
}
.card-blog:hover .status .see-more {
  background-color: #2d7aff;
  color: white;
}

/*#endregion -------------- Blogs */
/*#region ----------------- Hero */
.footer {
  background-color: #30253f;
}
.footer .social-icons {
  margin: 10px 0;
}
.footer .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  opacity: 0.6;
}
.footer .social-icons ul li a:hover {
  opacity: 1;
}
.footer .footer-links {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .certificate ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .certificate ul li {
  margin: 5px;
}
.footer .certificate ul li a {
  display: block;
  width: 70px;
}
.footer .certificate ul li a img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .footer .footer-copyright {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .footer .certificate {
    margin-bottom: 1rem;
  }
}
/*#endregion -------------- Hero */
