@charset "UTF-8";
/*#region ----------------- General */
@import url(../css/fontface.css);
*,
::before,
::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: "Yekan Bakh" !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  direction: rtl;
  margin: 0;
  background-color: #ffffff;
  text-align: right;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

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

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

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.625rem;
  font-weight: 800;
}

h4 {
  font-size: 1.375rem;
  font-weight: 800;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 26px;
  font-weight: 400;
}

hr {
  margin: 0.8rem 0;
  color: inherit;
  border: 0;
  border-top: #ddd solid 1px;
}

img {
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg,
img {
  vertical-align: middle;
}

button {
  cursor: pointer;
}

::-moz-selection {
  background-color: #007cc6;
  color: white;
}

::selection {
  background-color: #007cc6;
  color: white;
}

.fixed-position {
  overflow: hidden !important;
}

/*#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 ----------------- Animation */
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 66, 132, 0.7), 0 0 0 0 rgba(0, 66, 132, 0.7);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(0, 66, 132, 0), 0 0 0 0 rgba(0, 66, 132, 0.7);
  }
  80% {
    box-shadow: 0 0 0 20px rgba(0, 66, 132, 0), 0 0 0 20px rgba(0, 66, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 66, 132, 0), 0 0 0 20px rgba(0, 66, 132, 0);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  padding: 0rem 1.2rem;
  font-size: 16px;
  font-weight: 400;
  background-color: silver;
  height: 48px;
  border-radius: 10rem;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 3;
}
.btn .fi {
  display: inline-flex;
  font-size: 20px;
}
.btn.is-small {
  height: 40px;
  line-height: 2;
  font-size: 14px;
}

.icon-right .fi,
.icon-left .fi {
  position: absolute;
  top: 4px;
  width: 40px;
  height: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-right {
  padding-right: 3.5rem;
}
.icon-right .fi {
  right: 4px;
}

.icon-left {
  padding-left: 3.5rem;
}
.icon-left .fi {
  left: 4px;
}

.btn-primary {
  background-color: #004284;
  color: white;
}
.btn-primary .fi {
  color: #004284;
}
.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 5px 25px -1px rgba(0, 66, 132, 0.4);
}
.btn-primary.color-white {
  background-color: white;
  color: #004284;
}
.btn-primary.color-white .fi {
  color: white;
  background-color: #004284;
}

.btn-secondary {
  background-color: #007cc6;
  color: white;
}
.btn-secondary .fi {
  color: #007cc6;
}
.btn-secondary:hover, .btn-secondary:focus {
  box-shadow: 0 5px 25px -1px rgba(0, 124, 198, 0.4);
}

.btn-primary-outline.icon-left .fi, .btn-primary-outline.icon-right .fi,
.btn-secondary-outline.icon-left .fi,
.btn-secondary-outline.icon-right .fi {
  top: 50%;
  transform: translateY(-50%);
}
.btn-primary-outline.icon-left .fi,
.btn-secondary-outline.icon-left .fi {
  left: 2px;
}
.btn-primary-outline.icon-right .fi,
.btn-secondary-outline.icon-right .fi {
  right: 2px;
}

.btn-primary-outline {
  background-color: transparent;
  border: 2px solid #004284;
  color: #004284;
}
.btn-primary-outline .fi {
  color: white;
}
.btn-primary-outline.icon-left .fi, .btn-primary-outline.icon-right .fi {
  background-color: #004284;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background-color: rgba(0, 66, 132, 0.15);
}

.btn-secondary-outline {
  background-color: transparent;
  border: 2px solid #007cc6;
  color: #007cc6;
}
.btn-secondary-outline .fi {
  color: white;
}
.btn-secondary-outline.icon-left .fi, .btn-secondary-outline.icon-right .fi {
  background-color: #007cc6;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background-color: rgba(0, 124, 198, 0.15);
}

.btn-danger {
  background-color: #f81300;
  color: white;
}
.btn-danger .fi {
  color: #f81300;
}
.btn-danger.icon-left .fi, .btn-danger.icon-right .fi {
  background-color: white;
}

/*#endregion -------------- Buttons */
/*#region ----------------- Modal */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.modal.show {
  display: flex;
}

.modal-dialog {
  width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  max-height: 95%;
  z-index: 9999;
}
.modal-dialog.show {
  display: flex;
  animation: scaleZoomIn 0.35s ease-in-out;
}
.modal-dialog.modal-sm {
  width: 640px;
}
.modal-dialog.modal-md {
  width: 768px;
}
.modal-dialog.modal-lg {
  width: 1024px;
}
.modal-dialog.modal-xl {
  width: 1280px;
}
.modal-dialog.modal-full {
  width: 100%;
  max-height: 100%;
  height: 100%;
}
.modal-dialog.modal-full .modal-header,
.modal-dialog.modal-full .modal-footer {
  border-radius: 0;
}

.modal-header {
  flex-shrink: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  z-index: 1;
  position: relative;
}
.modal-header .modal-title {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 24px 24px;
  background-color: #004284;
  padding: 0.8rem 2.2rem;
  color: white;
  position: relative;
  box-shadow: 0 5px 25px -1px rgba(0, 66, 132, 0.4);
}
.modal-header .modal-title::before, .modal-header .modal-title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.modal-header .modal-title::before {
  right: -24px;
  transform: rotate(90deg);
}
.modal-header .modal-title::after {
  left: -24px;
  transform: rotate(180deg);
}
.modal-header .modal-title .fi {
  margin-left: 10px;
  font-size: 20px;
  color: #6f717d;
  display: flex;
}
.modal-header .btn-close {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #9fa0a9;
  width: 34px;
  height: 34px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header .btn-close .fi {
  display: flex;
}
.modal-header .btn-close:hover {
  color: #6f717d;
}

.modal-body {
  overflow-y: auto;
  flex: 1 1 auto;
  background-color: white;
  border-radius: 0;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
}
.modal-body.is-radius {
  border-radius: 0 0 20px 20px;
}

.modal-footer {
  flex-shrink: 0;
  background-color: white;
  border-radius: 0 0 20px 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

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

@media (max-width: 640px) {
  .modal .modal-dialog {
    width: 90%;
  }
  .modal .modal-footer {
    flex-direction: column;
  }
  .modal .modal-footer .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .modal .modal-dialog.modal-sm {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .modal .modal-dialog.modal-md {
    width: 90%;
  }
  .modal .modal-dialog.modal-lg {
    width: 90%;
  }
  .modal .modal-dialog.modal-xl {
    width: 90%;
  }
}
@media (max-width: 1280px) {
  .modal .modal-dialog.modal-lg {
    width: 92%;
  }
  .modal .modal-dialog.modal-xl {
    width: 92%;
  }
}
@media (max-width: 1536px) {
  .modal .modal-dialog.modal-xl {
    width: 95%;
  }
}
/*#endregion -------------- Modal */
/*#region ----------------- Menu */
.menu-content {
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
  min-width: 200px;
}
.menu-content .menu-list li a {
  display: flex;
  align-items: center;
  padding: 8px 5px;
  color: #0f1227;
}
.menu-content .menu-list li a .fi {
  display: flex;
  margin-left: 10px;
  font-size: 18px;
  color: #6f717d;
}
.menu-content .menu-list li a:hover {
  color: #004284;
}
.menu-content .menu-list li a:hover .fi {
  color: #004284;
}

/*#endregion -------------- Menu */
/*#region ----------------- Forms */
.textarea-group {
  margin-bottom: 16px;
}
.textarea-group label {
  font-size: 14px;
  color: #0f1227;
  display: block;
  margin-bottom: 5px;
  padding-right: 5px;
}
.textarea-group .textarea {
  padding: 15px;
  width: 100%;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  background-color: white;
  border: 1px solid #ddd;
  color: #0f1227;
}
.textarea-group .textarea:hover, .textarea-group .textarea:focus {
  border-color: #004284;
}

.input-group {
  position: relative;
  margin-bottom: 16px;
}
.input-group label {
  font-size: 14px;
  color: #0f1227;
  display: block;
  margin-bottom: 5px;
  padding-right: 5px;
}
.input-group .icon {
  position: absolute;
  top: 26px;
  right: 0;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: #6f717d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group .icon .fi {
  display: flex;
}
.input-group .input {
  width: 100%;
  height: 48px;
  border-radius: 10rem;
  padding: 0 50px 0 15px;
  transition: all 0.2s ease-in-out;
  background-color: white;
  border: 1px solid #ddd;
  color: #0f1227;
}
.input-group .input:hover, .input-group .input:focus {
  border-color: #004284;
}
.input-group .input:hover ~ .icon, .input-group .input:focus ~ .icon {
  color: #004284;
}
.input-group.no-icon .input {
  padding-right: 15px !important;
}
.input-group.no-label .icon {
  top: 0;
}
.input-group.no-label .pcalBtn {
  top: 0 !important;
}
.input-group.small .input {
  height: 40px;
  font-size: 14px;
  padding-right: 40px;
}
.input-group.small .icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.select-group {
  margin-bottom: 16px;
}
.select-group label {
  font-size: 14px;
  color: #0f1227;
  display: block;
  margin-bottom: 5px;
  padding-right: 5px;
}
.select-group .select {
  transition: all 0.2s ease-in-out;
  background-color: white;
  border: 1px solid #ddd;
  height: 48px;
  padding: 0 15px 0 35px;
  width: 100%;
  border-radius: 10rem;
  color: #0f1227;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  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: #004284;
}
.select-group.small .select {
  height: 40px;
  font-size: 14px;
}

.form-switch .form-switch-input {
  display: none;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::before {
  background-color: #007cc6;
}
.form-switch .form-switch-input:checked ~ .form-switch-label::after {
  right: 2px;
  background-color: white;
}
.form-switch .form-switch-label {
  position: relative;
  padding-right: 40px;
  font-size: 16px;
  color: #0f1227;
  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.1);
  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: #ffffff;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.checkbox .form-checkbox-label {
  position: relative;
  padding-right: 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400 !important;
}
.checkbox .form-checkbox-label::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.checkbox .form-checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.checkbox .form-checkbox-input:checked + .form-checkbox-label::before {
  background-color: #004284;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2212%22%20viewBox%3D%220%200%2015%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%206L5.24264%2010.2426L13.727%201.75732%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}
.checkbox.is-small .form-checkbox-label {
  font-size: 14px;
}

.radio {
  margin: 10px 0;
}
.radio .form-radio-label {
  position: relative;
  padding-right: 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
.radio .form-radio-label::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}
.radio .form-radio-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.radio .form-radio-input:checked + .form-radio-label::before {
  background-color: #004284;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%201C2.79086%201%201%202.79086%201%205C1%207.20914%202.79086%209%205%209C7.20914%209%209%207.20914%209%205C9%202.79086%207.20914%201%205%201Z%22%20fill%3D%22white%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}
.radio.is-small .form-radio-label {
  font-size: 14px;
}

.form-control-group .group-label {
  font-size: 14px;
  color: #0f1227;
  display: block;
  margin-bottom: 5px;
  padding-right: 5px;
}

/*#endregion -------------- Forms */
/*#region ----------------- Login */
.login-section {
  display: none;
}
.login-section.active {
  display: block;
}
.login-section .links-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}
.login-section .showCountdown {
  font-size: 18px;
  font-weight: 600;
  color: #0f1227;
  padding: 0 20px;
  text-align: center;
}
.login-section .btn-resend-sms {
  display: block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  color: #007cc6;
  -webkit-text-decoration: underline 1px dashed #007cc6;
          text-decoration: underline 1px dashed #007cc6;
}
.login-section .btn-change-number {
  background-color: transparent;
  font-size: 14px;
  color: #007cc6;
  border: none;
}
.login-section .btn-change-number .ci {
  margin-left: 5px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

/*#endregion -------------- Login */
/*#region ----------------- Navbar */
.mynavbar {
  position: relative;
  width: 100%;
  z-index: 999;
  background-color: white;
}
.mynavbar .inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
}
.mynavbar .nav-logo a {
  display: block;
}
.mynavbar .nav-logo a img {
  width: 100%;
}
.mynavbar .nav-links {
  padding: 0 20px;
}
.mynavbar .nav-links ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mynavbar .nav-links ul li {
  margin: 0 10px;
  position: relative;
}
.mynavbar .nav-links ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6f717d;
  display: block;
  padding: 30px 0;
  position: relative;
}
.mynavbar .nav-links ul li a:hover {
  color: #004284;
}
.mynavbar .nav-links ul li.active a {
  color: #004284;
}
.mynavbar .nav-links ul li.have-links > a {
  display: flex;
  align-items: center;
}
.mynavbar .nav-links ul li.have-links > a::after {
  content: "\f153";
  font-family: uicons-regular-straight;
  font-size: 18px;
  color: #6f717d;
  margin-right: 4px;
  position: relative;
}
.mynavbar .nav-links ul li.have-links:hover > ul {
  display: block;
}
.mynavbar .nav-links ul li > ul {
  background-color: white;
  display: none;
  position: absolute;
  top: 100%;
  min-width: 200px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
  animation: swipeupsmall 0.1s ease-in-out;
}
.mynavbar .nav-links ul li > ul li a {
  text-align: right;
  white-space: nowrap;
  padding: 8px 10px;
}
.mynavbar .nav-links ul li > ul li a::before {
  display: none;
}
.mynavbar .nav-links ul li > ul li.have-links > a::after {
  content: "\f154";
  position: absolute;
  left: 5px;
  top: 8px;
}
.mynavbar .nav-links ul li > ul ul {
  right: 100%;
  top: 0;
}
.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 .user-actions {
  position: relative;
}
.mynavbar .nav-actions .user-actions:hover .user-menu-list {
  display: block;
}
.mynavbar .user-menu-list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  animation: swipeupsmall 0.1s ease-in-out;
}
.mynavbar .mobile-menu {
  display: none;
}
.mynavbar .btn-show-mobile-menu {
  width: 44px;
  height: 44px;
  padding: 2px;
  background-color: transparent;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 10px;
  color: #6f717d;
}
.mynavbar .btn-show-mobile-menu:hover {
  background-color: #f2f2f5;
}
.mynavbar .btn-show-mobile-menu .fi {
  display: flex;
}
.mynavbar.type-2 {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.mynavbar.type-2 .nav-logo a img {
  filter: grayscale(100%) brightness(400%);
}
.mynavbar.type-2 .nav-links ul li.have-links > a::after {
  color: rgba(255, 255, 255, 0.7);
}
.mynavbar.type-2 .nav-links ul li a {
  color: white;
}
.mynavbar.type-2 .nav-links ul li > ul a {
  color: #0f1227 !important;
}

@media (max-width: 1024px) {
  .mynavbar {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
  }
  .mynavbar .inner {
    grid-template-columns: 1fr 150px 1fr;
    padding: 12px 0;
  }
  .mynavbar .nav-links {
    display: none;
  }
  .mynavbar .mobile-menu {
    display: block;
  }
  .mynavbar .nav-actions .item {
    margin-right: 5px;
  }
  .mynavbar .nav-actions .btn {
    height: 44px;
    font-size: 14px;
  }
  .mynavbar .nav-actions .btn .fi {
    font-size: 20px;
    margin: 0 !important;
  }
  .mynavbar .nav-actions .btn.icon-right {
    padding-right: 3rem;
  }
  .mynavbar .nav-actions .btn.icon-right .fi {
    width: 36px;
    height: 36px;
  }
  .mynavbar.type-2 {
    background-color: white;
  }
  .mynavbar.type-2 .nav-logo a img {
    filter: unset;
  }
  .mynavbar.type-2 .nav-links ul li.have-links > a::after {
    color: #6f717d;
  }
  .mynavbar.type-2 .nav-links ul li a {
    color: #0f1227;
  }
  .mynavbar.type-2 .nav-links ul li > ul a {
    color: #0f1227 !important;
  }
}
@media (max-width: 768px) {
  .mynavbar .inner {
    grid-template-columns: 60px 140px auto;
  }
  .mynavbar .nav-actions .btn {
    height: 44px;
    width: 44px;
    padding: 2px !important;
    background-color: transparent;
    border-color: #ddd;
  }
  .mynavbar .nav-actions .btn .text {
    display: none;
  }
  .mynavbar .nav-actions .btn .icon {
    background-color: transparent;
    color: #6f717d;
    width: 100%;
    height: 100%;
    position: unset;
    transform: unset;
  }
  .mynavbar .nav-actions .btn .fi {
    font-size: 24px;
    margin: 0 !important;
  }
  .mynavbar .nav-actions .btn.icon-right {
    padding-right: 3rem;
  }
  .mynavbar .nav-actions .btn.icon-right .fi {
    width: 36px;
    height: 36px;
  }
  .mynavbar .nav-actions .btn:hover, .mynavbar .nav-actions .btn:focus {
    box-shadow: none;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Sidebar */
#sidebar-menu {
  position: fixed;
  top: 0;
  right: -280px;
  height: 100dvh;
  width: 280px;
  z-index: 2002;
  background: white;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
#sidebar-menu.active {
  right: 0;
}
#sidebar-menu .sidebar-header {
  padding: 2rem 1rem 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
}
#sidebar-menu .sidebar-header .btn-close-menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  color: white;
  background-color: #004284;
  border: none;
  padding: 0;
  font-size: 18px;
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sidebar-menu .sidebar-header .btn-close-menu::before, #sidebar-menu .sidebar-header .btn-close-menu::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
#sidebar-menu .sidebar-header .btn-close-menu::before {
  right: -12px;
  transform: rotate(90deg);
}
#sidebar-menu .sidebar-header .btn-close-menu::after {
  left: 0;
  top: unset;
  bottom: -12px;
  transform: rotate(-270deg);
}
#sidebar-menu .sidebar-header .btn-close-menu .fi {
  display: flex;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
#sidebar-menu .category-list {
  margin-top: 5px;
  overflow-y: auto;
  flex: 1 1 auto;
}
#sidebar-menu .category-list .item a {
  padding: 10px 1rem;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0f1227;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .category-list .item a .fi {
  position: relative;
  top: 4px;
  font-size: 22px;
  margin-left: 10px;
  color: #9fa0a9;
}
#sidebar-menu .category-list .item a:hover {
  background-color: rgba(0, 66, 132, 0.05);
  color: #004284;
}
#sidebar-menu .category-list .item a:hover .fi {
  color: #004284;
}
#sidebar-menu .social-icons {
  padding: 15px 10px;
}
#sidebar-menu .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#sidebar-menu .social-icons ul li {
  margin: 5px;
}
#sidebar-menu .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #004284;
  color: #004284;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  padding: 2px;
}
#sidebar-menu .social-icons ul li a:hover {
  background-color: #004284;
  color: white;
}
#sidebar-menu .social-icons ul li a .fi {
  font-size: 24px;
  display: flex;
}
#sidebar-menu .social-icons ul li a img {
  width: 24px;
}

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

@media (max-width: 320px) {
  #sidebar-menu {
    width: 100%;
    right: -350px;
  }
}
/*#endregion -------------- Sidebar */
/*#region ----------------- Hero */
.hero-home {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 30px;
  margin-bottom: 100px;
}
.hero-home::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/bg/home-hero.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.hero-home .text-content {
  position: relative;
  padding-left: 20px;
}
.hero-home .text-content h2 {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 20px;
  padding-right: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.hero-home .text-content h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  border-radius: 2rem;
  background-color: #004284;
}
.hero-home .text-content p {
  color: #6f717d;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-home .text-content .btns-action {
  margin-top: 40px;
  text-align: right;
}
.hero-home .text-content .btns-action .btn {
  margin: 5px;
}
.hero-home .image-content .img-inner {
  width: 500px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
}
.hero-home .image-content .img-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 2px solid rgb(190, 190, 190);
  border-radius: 50%;
  z-index: 1;
}
.hero-home .image-content .img-inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.swiper-hero .swiper-wrapper {
  padding: 25px 0;
}
.swiper-hero .swiper-slide {
  opacity: 0 !important;
}
.swiper-hero .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: #004284;
  border-radius: 50%;
  top: unset;
  bottom: 15px;
}
.swiper-hero .swiper-button-prev::after,
.swiper-hero .swiper-button-next::after {
  font-size: 20px;
  color: white;
}
.swiper-hero .swiper-button-next {
  left: unset;
  right: 75px;
}
.swiper-hero .swiper-button-prev {
  right: 30px;
}

@media (max-width: 1280px) {
  .hero-home .image-content .img-inner {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .hero-home {
    margin-top: 50px;
  }
  .hero-home::before {
    width: 98%;
    height: 90%;
  }
  .hero-home .section-inner {
    position: relative;
  }
  .hero-home .text-content::before {
    height: 50px;
  }
  .hero-home .text-content h2 {
    font-size: 22px;
    line-height: 32px;
    min-height: unset;
    margin-bottom: 12px;
  }
  .hero-home .text-content p {
    min-height: unset;
    -webkit-line-clamp: 2;
  }
  .hero-home .text-content .btns-action {
    margin-top: 25px;
  }
  .hero-home .image-content {
    margin-top: 50px;
  }
  .hero-home .image-content .img-inner {
    width: 500px;
  }
  .swiper-hero {
    position: unset;
  }
  .swiper-hero .swiper-button-next,
  .swiper-hero .swiper-button-prev {
    bottom: 0;
    background-color: white;
  }
  .swiper-hero .swiper-button-next::after,
  .swiper-hero .swiper-button-prev::after {
    color: #004284;
  }
  .swiper-hero .swiper-button-next {
    right: 50px;
  }
  .swiper-hero .swiper-button-prev {
    right: 0;
  }
}
@media (max-width: 768px) {
  .hero-home::before {
    width: 99%;
  }
  .hero-home .text-content h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .hero-home .text-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .hero-home .image-content .img-inner {
    width: 90%;
  }
  .hero-home .btns-action .btn {
    height: 44px;
    font-size: 14px;
  }
  .hero-home .btns-action .btn .fi {
    font-size: 20px;
    margin: 0 !important;
  }
  .hero-home .btns-action .btn.icon-right {
    padding-right: 3rem;
  }
  .hero-home .btns-action .btn.icon-right .fi {
    width: 36px;
    height: 36px;
  }
  .hero-home .btns-action .btn.icon-left {
    padding-left: 3rem;
  }
  .hero-home .btns-action .btn.icon-left .fi {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 660px) {
  .swiper-hero .swiper-button-next,
  .swiper-hero .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
  .swiper-hero .swiper-button-next::after,
  .swiper-hero .swiper-button-prev::after {
    font-size: 14px;
  }
  .swiper-hero .swiper-button-next {
    right: 60px;
  }
  .swiper-hero .swiper-button-prev {
    right: 20px;
  }
}
@media (max-width: 450px) {
  .hero-home .image-content .img-inner::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Search */
.search-content {
  margin: 20px 0;
}
.search-content .section-inner {
  background-color: #f2f2f5;
  border-radius: 25px;
  padding: 30px 30px 20px 30px;
}

@media (max-width: 640px) {
  .search-content .section-inner {
    padding: 30px 10px 15px 10px;
  }
}
/*#endregion -------------- Search */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 2rem;
  text-align: center;
}
.page-title .title-inner {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}
.page-title .title-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 80%;
  height: 70%;
  border-radius: 15px;
  background-color: #f2f2f5;
  z-index: -1;
}
.page-title h2 {
  color: #0f1227;
}
.page-title h2.fa {
  font-size: 1.7rem;
}
.page-title h2.en {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f79926;
  text-transform: uppercase;
  margin-bottom: 0;
}
.page-title p {
  font-size: 16px;
  font-weight: 400;
  color: #6f717d;
  margin: 12px auto 0 auto;
  width: 700px;
  position: relative;
}
.page-title.align-right {
  text-align: right;
}
.page-title.align-right .title-inner {
  width: 100%;
}
.page-title.align-right h2.en {
  right: 0;
  transform: translate(0, -50%);
}
.page-title.align-right p {
  width: 100%;
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title .title {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 24px 24px;
  background-color: #004284;
  padding: 0.8rem 2.2rem;
  color: white;
  position: relative;
}
.section-title .title::before, .section-title .title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.section-title .title::before {
  right: -24px;
  transform: rotate(90deg);
}
.section-title .title::after {
  left: -24px;
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .page-title h2.fa {
    font-size: 1.5rem;
  }
  .page-title h2.en {
    font-size: 1.3rem;
  }
  .page-title p {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-title h2.fa {
    font-size: 1.4rem;
  }
  .page-title h2.en {
    font-size: 1.2rem;
  }
  .page-title p {
    font-size: 14px;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Category */
.category-section {
  margin: 80px 0;
}

.card-category {
  padding: 5px;
}
.card-category .card-inner {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  position: relative;
}
.card-category .card-inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  border-radius: 5px 0 0 5px;
  background-color: #004284;
}
.card-category .thumb {
  width: 64px;
  height: 64px;
}
.card-category .thumb img {
  width: 100%;
}
.card-category .info {
  margin-right: 15px;
}
.card-category .info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.swiper-category .card-category {
  margin: 10px 0;
}
.swiper-category .swiper-wrapper {
  padding-bottom: 40px;
}
.swiper-category .swiper-pagination-bullet {
  background-color: #004284;
}

@media (max-width: 1024px) {
  .card-category .info h3 {
    font-size: 16px;
  }
}
/*#endregion -------------- Category */
/*#region ----------------- Blogs */
.blogs-home-section {
  margin: 90px 0;
}
.blogs-home-section .section-inner {
  background-color: #f2f2f5;
  border-radius: 25px;
  padding: 50px 40px 0 40px;
  position: relative;
}
.blogs-home-section .page-title {
  position: relative;
  z-index: 1;
}
.blogs-home-section .page-title .title-inner::before {
  background-color: white;
}
.blogs-home-section .btns-action {
  margin-top: 40px;
  text-align: center;
}
.blogs-home-section .btns-action .inner {
  background-color: white;
  display: inline-block;
  padding: 0 15px 0 15px;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.blogs-home-section .btns-action .inner::before, .blogs-home-section .btns-action .inner::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../images/shapes/curve-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.blogs-home-section .btns-action .inner::before {
  right: -20px;
  bottom: 0;
}
.blogs-home-section .btns-action .inner::after {
  left: -20px;
  bottom: 0;
  transform: rotate(-90deg);
}
.blogs-home-section .btns-action .inner .btn {
  position: relative;
  top: 15px;
}

.swiper-home-blogs {
  position: unset;
}
.swiper-home-blogs .swiper-wrapper {
  padding-top: 30px;
}
.swiper-home-blogs .swiper-button-next,
.swiper-home-blogs .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.swiper-home-blogs .swiper-button-next::after,
.swiper-home-blogs .swiper-button-prev::after {
  font-size: 20px;
  color: #6f717d;
}
.swiper-home-blogs .swiper-button-next {
  left: -15px;
}
.swiper-home-blogs .swiper-button-prev {
  right: -15px;
}

.card-blog .card-inner {
  display: block;
  background-color: white;
  padding: 0 20px 0 20px;
  border-radius: 20px;
}
.card-blog .thumb {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  margin: 0;
  border: 5px solid #f2f2f5;
  top: -20px;
}
.card-blog .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-blog .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease-in;
}
.card-blog .info h3 {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .info .category {
  font-size: 13px;
  color: #9fa0a9;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .info .category .fi {
  margin-left: 8px;
  position: relative;
  top: 4px;
  font-size: 15px;
}
.card-blog .info p {
  font-size: 14px;
  color: #6f717d;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.card-blog .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.card-blog .date {
  display: inline-block;
  font-size: 14px;
  color: #9fa0a9;
}
.card-blog .date .fi {
  margin-left: 5px;
  font-size: 16px;
  position: relative;
  top: 3px;
}
.card-blog .see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f5;
  position: relative;
  left: -20px;
  padding: 10px 15px 10px 10px;
  border-radius: 0 15px 0 0;
}
.card-blog .see-more::before, .card-blog .see-more::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../images/shapes/curve-gray.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
}
.card-blog .see-more::before {
  right: -20px;
  bottom: 0;
}
.card-blog .see-more::after {
  left: 0;
  top: -20px;
}
.card-blog .see-more .text {
  font-size: 14px;
  font-weight: 400;
  color: #0f1227;
}
.card-blog .see-more .icon {
  width: 28px;
  height: 28px;
  background-color: #004284;
  border-radius: 50%;
  color: white;
  margin-right: 5px;
  position: relative;
  right: 0px;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-blog .see-more .icon .fi {
  display: flex;
}
.card-blog:hover .info h3 {
  color: #004284;
}
.card-blog:hover .see-more .icon {
  right: 5px;
}
.card-blog.type-row .card-inner {
  display: grid;
  grid-template-columns: 250px auto;
  position: relative;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  border-radius: 20px;
}
.card-blog.type-row .thumb {
  border: none;
  top: 0;
  border-radius: 15px;
  height: 178px;
}
.card-blog.type-row .thumb img {
  border-radius: 15px;
}
.card-blog.type-row .info {
  padding: 10px 15px 5px 10px;
}
.card-blog.type-row .see-more {
  left: 0;
  background-color: white;
  padding: 0;
}
.card-blog.type-row .see-more::after, .card-blog.type-row .see-more::before {
  display: none;
}
.card-blog.type-search .card-inner {
  display: grid;
  grid-template-columns: 64px auto;
  background-color: #f2f2f5;
  padding: 15px 15px 0 15px;
}
.card-blog.type-search .thumb {
  top: 0;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 15px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-blog.type-search .thumb .fi {
  display: flex;
  font-size: 24px;
  color: #004284;
}
.card-blog.type-search .info {
  padding-right: 10px;
}
.card-blog.type-search .info p {
  -webkit-line-clamp: 1;
  min-height: unset;
}
.card-blog.type-search .see-more {
  background-color: white;
  left: -15px;
}
.card-blog.type-search .see-more::before, .card-blog.type-search .see-more::after {
  background-image: url(../images/shapes/curve-white.svg);
  display: block;
}

@media (max-width: 1536px) {
  .card-blog .thumb {
    height: 210px;
  }
}
@media (max-width: 1024px) {
  .blogs-home-section {
    margin: 70px 0;
  }
  .blogs-home-section .section-inner {
    padding: 40px 30px 0 30px;
  }
  .card-blog .card-inner {
    padding: 0 10px;
  }
  .card-blog .thumb {
    height: 180px;
  }
  .card-blog .info h3 {
    font-size: 16px;
  }
  .card-blog .info .category {
    font-size: 12px;
  }
  .card-blog .info p {
    font-size: 13px;
    line-height: 19px;
    min-height: 38px;
  }
  .card-blog .date {
    font-size: 13px;
  }
  .card-blog .date .fi {
    font-size: 14px;
  }
  .card-blog .see-more {
    left: -10px;
  }
  .card-blog .see-more .text {
    font-size: 13px;
  }
  .card-blog .see-more .icon {
    width: 24px;
    height: 24px;
  }
  .card-blog.type-row .card-inner {
    grid-template-columns: 200px auto;
  }
  .card-blog.type-row .thumb {
    height: 148px;
  }
  .card-blog.type-row .info {
    padding: 5px 10px 0 5px;
  }
  .card-blog.type-search .card-inner {
    grid-template-columns: 54px auto;
  }
  .card-blog.type-search .thumb {
    width: 54px;
    height: 54px;
  }
  .card-blog.type-search .thumb .fi {
    font-size: 20px;
  }
  .card-blog.is-course .card-inner {
    grid-template-columns: 220px auto;
  }
  .card-blog.is-course .thumb {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .swiper-home-blogs .swiper-button-next,
  .swiper-home-blogs .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-home-blogs .swiper-button-next {
    left: -5px;
  }
  .swiper-home-blogs .swiper-button-prev {
    right: -5px;
  }
}
@media (max-width: 640px) {
  .card-blog.type-row .card-inner {
    grid-template-columns: 150px auto;
    padding: 5px;
  }
  .card-blog.type-row .thumb {
    height: 100px;
  }
  .card-blog.type-row .info {
    padding: 5px 10px 5px 8px;
  }
  .card-blog.type-row .info h3 {
    font-size: 14px;
    margin-bottom: 0.4rem;
  }
  .card-blog.type-row .info .category {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .card-blog.type-row .info p {
    -webkit-line-clamp: 1;
    min-height: unset;
    font-size: 12px;
    margin-bottom: 0.6rem;
  }
  .card-blog.type-row .date {
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: white;
    padding: 5px 8px;
    border-radius: 10px 0 20px 0;
  }
  .card-blog.type-row .date .fi {
    font-size: 13px;
  }
  .card-blog.type-row .see-more .text {
    font-size: 12px;
  }
  .card-blog.type-row .see-more .icon {
    width: 20px;
    height: 20px;
  }
  .card-blog.type-row .c-footer {
    justify-content: flex-end;
    margin-top: 12px;
  }
  .card-blog.type-search .card-inner {
    grid-template-columns: 45px auto;
    padding: 10px 10px 0 10px;
  }
  .card-blog.type-search .thumb {
    width: 45px;
    height: 45px;
  }
  .card-blog.type-search .thumb .fi {
    font-size: 18px;
  }
  .card-blog.type-search .info h3 {
    font-size: 14px;
  }
  .card-blog.type-search .info .category {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .card-blog.type-search .info .category .fi {
    font-size: 13px;
  }
  .card-blog.type-search .info p {
    margin-bottom: 0.8rem;
  }
  .card-blog.type-search .c-footer {
    margin-top: 15px;
  }
  .card-blog.type-search .date {
    font-size: 12px;
  }
  .card-blog.type-search .date .fi {
    font-size: 12px;
  }
  .card-blog.type-search .see-more {
    left: -10px;
    padding: 8px;
  }
  .card-blog.type-search .see-more::before, .card-blog.type-search .see-more::after {
    width: 15px;
    height: 15px;
  }
  .card-blog.type-search .see-more::before {
    right: -15px;
  }
  .card-blog.type-search .see-more::after {
    top: -15px;
  }
  .card-blog.type-search .see-more .text {
    font-size: 12px;
  }
  .card-blog.type-search .see-more .icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 380px) {
  .card-blog.type-row .card-inner {
    grid-template-columns: 100%;
  }
  .card-blog.type-row .thumb {
    height: 170px;
  }
}
/*#endregion -------------- Blogs */
/*#region ----------------- Faqs */
.faqs-section {
  margin: 100px 0;
}
.faqs-section .section-inner {
  margin-top: 50px;
}
.faqs-section .faqs-item {
  margin-bottom: 16px;
  background-color: #f2f2f5;
  border-radius: 15px;
}
.faqs-section .faqs-item .inner {
  padding: 10px;
}
.faqs-section .image-content {
  position: relative;
}
.faqs-section .image-content .img-inner img {
  width: 100%;
}

@media (max-width: 768px) {
  .faqs-section .btn-collapse .text {
    font-size: 14px;
  }
}
/*#endregion -------------- Faqs */
/*#region ----------------- Collapse */
.btn-collapse {
  display: flex;
  align-items: center;
  background-color: transparent;
  color: #0f1227;
  border: 1px solid #ddd;
  padding: 15px;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}
.btn-collapse .icon {
  width: 24px;
  height: 24px;
  font-size: 20px;
  margin-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-collapse .icon:before {
  content: "絛";
  font-family: uicons-regular-straight;
  color: #6f717d;
}
.btn-collapse .icon.icon-angel::before {
  content: "\f154";
}
.btn-collapse .text {
  font-size: 16px;
  font-weight: 600;
  color: #0f1227;
}
.btn-collapse.collapsed .icon::before {
  content: "陋";
}
.btn-collapse.collapsed .icon.icon-angel::before {
  content: "\f153";
}
.btn-collapse.type-simple {
  border: none;
}
.btn-collapse.is-icon-absolute {
  padding-left: 45px;
}
.btn-collapse.is-icon-absolute .icon {
  margin: 0;
  position: absolute;
  left: 12px;
}

.card-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.card-collapse.show {
  max-height: 1000px; /* Adjust based on content */
}

/*#endregion -------------- Collapse */
/*#region ----------------- Footer */
.footer {
  margin-top: 50px;
  overflow: hidden;
  border-top: 1px solid #ddd;
  background-color: white;
  padding: 80px 0 0 0;
}
.footer .property {
  background-color: #cbe6f4;
  width: 100%;
  padding: 15px 0;
}
.footer .information .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.footer .information .logo .img {
  width: 170px;
}
.footer .information .logo .img img {
  width: 100%;
}
.footer .information .info p {
  font-size: 14px;
  text-align: justify;
}
.footer .f-title {
  font-size: 19px;
  margin-bottom: 20px;
}
.footer .links {
  padding: 0 30px;
}
.footer .links .link-list li {
  margin: 10px 0;
}
.footer .links .link-list li a {
  display: inline-block;
  font-size: 16px;
  color: #6f717d;
}
.footer .links .link-list li a:hover {
  color: #004284;
}
.footer .contact .item {
  display: grid;
  grid-template-columns: 34px auto;
  margin-bottom: 20px;
}
.footer .contact .item .icon {
  width: 34px;
  font-size: 24px;
  color: #6f717d;
}
.footer .contact .item .icon .fi {
  display: flex;
}
.footer .contact .item .text {
  margin-right: 12px;
}
.footer .contact .item .text h6 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #0f1227;
}
.footer .contact .item .text ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .contact .item .text ul li a {
  padding: 2px 10px;
  font-weight: 600;
  color: #004284;
  border-left: 1px solid #ddd;
}
.footer .contact .item .text ul li a:hover {
  color: #007cc6;
}
.footer .contact .item .text ul li:first-child a {
  padding-right: 0;
}
.footer .contact .item .text ul li:last-child a {
  border-left: none;
}
.footer .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .social-icons ul li {
  margin: 5px;
}
.footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #6f717d;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  color: #6f717d;
}
.footer .social-icons ul li a img {
  width: 24px;
}
.footer .social-icons ul li a .fi {
  font-size: 24px;
  display: flex;
}
.footer .social-icons ul li a:hover {
  background-color: #004284;
  color: white;
}
.footer .certificate-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .certificate-list li {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 5px 0 5px 10px;
}
.footer .certificate-list li a {
  display: block;
}
.footer .certificate-list li img {
  width: 100%;
  border-radius: 10px;
}
.footer .copyright {
  border-top: 1px solid #ddd;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  background-color: #f2f2f5;
}
.footer.footer-landing-ai {
  border: none;
}
.footer.footer-landing-ai .footer-inner {
  background-color: #004284;
  padding: 40px;
  border-radius: 80px 80px 0 0;
}
.footer.footer-landing-ai .information .logo .img img {
  filter: grayscale(100%) brightness(400%);
}
.footer.footer-landing-ai .information .info p {
  color: rgba(255, 255, 255, 0.8);
}
.footer.footer-landing-ai .social-icons ul li a {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.footer.footer-landing-ai .f-title {
  color: white;
}
.footer.footer-landing-ai .contact .item .icon {
  color: white;
}
.footer.footer-landing-ai .contact .item .text h6 {
  color: white;
}
.footer.footer-landing-ai .contact .item .text ul li a {
  color: #f79926;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.footer.footer-landing-ai .contact .item .text ul li a:hover {
  color: white;
}
.footer.footer-landing-ai .contact .item .text ul li:first-child a {
  padding-right: 0;
}
.footer.footer-landing-ai .contact .item .text ul li:last-child a {
  border-left: none;
}

@media (max-width: 1024px) {
  .footer {
    padding-top: 60px;
  }
  .footer .information {
    margin-bottom: 0;
  }
  .footer .information .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .information .info p {
    text-align: center;
  }
  .footer .information .info .btn-action {
    align-items: center;
    justify-content: center;
  }
  .footer .social-icons {
    margin-bottom: 30px;
  }
  .footer .social-icons ul {
    justify-content: center;
  }
  .footer .certificate-list {
    width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
  .footer .links {
    margin-bottom: 20px;
    padding: 0;
  }
  .footer .links .link-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer .links .link-list li {
    margin: 0 0 10px 20px;
  }
}
@media (max-width: 640px) {
  .footer .information .info p {
    font-size: 13px;
    line-height: 20px;
  }
  .footer .information .info .btn-action .btn {
    font-size: 13px;
    height: 2.6rem;
    min-height: 2.6rem;
  }
  .footer .f-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer .links .link-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer .links .link-list li {
    margin: 0 0 12px 20px;
  }
  .footer .links .link-list li a {
    font-size: 14px;
  }
  .footer .contact .item .text h6 {
    font-size: 13px;
  }
  .footer .contact .item .text ul li a {
    font-size: 14px;
  }
  .footer .certificate-list {
    width: 80%;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Page Header */
.page-header {
  margin: 20px 0 50px 0;
}
.page-header .header-inner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 80px 40px 70px 40px;
}
.page-header .header-inner::before, .page-header .header-inner:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page-header .header-inner::before {
  background: url(../images/blogs/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-header .header-inner::after {
  background-color: rgba(0, 66, 132, 0.4);
}
.page-header .title {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  z-index: 5;
  color: white;
}
.page-header .desc {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  z-index: 5;
  color: rgba(255, 255, 255, 0.8);
}
.page-header .breadcrumbs {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.page-header .breadcrumbs .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}
.page-header .breadcrumbs .breadcrumb-link {
  color: white;
}
.page-header .breadcrumbs .breadcrumb-link::after {
  color: white;
}
.page-header .breadcrumbs .breadcrumb-link:hover {
  color: #f79926;
}

@media (max-width: 1024px) {
  .page-header {
    margin: 90px 0 40px 0;
  }
  .page-header .header-inner {
    border-radius: 30px;
    padding: 60px 30px 40px 30px;
  }
  .page-header .title {
    font-size: 1.8rem;
  }
  .page-header .desc {
    font-size: 14px;
  }
  .page-header .breadcrumbs {
    margin-top: 15px;
  }
  .page-header .breadcrumbs .breadcrumb-item {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .page-header .header-inner {
    border-radius: 25px;
    padding: 50px 20px 30px 20px;
  }
  .page-header .title {
    font-size: 1.6rem;
  }
  .page-header .desc {
    font-size: 13px;
  }
  .page-header .breadcrumbs {
    margin-top: 15px;
  }
  .page-header .breadcrumbs .breadcrumb-item {
    font-size: 13px;
  }
}
/*#endregion -------------- Page Header */
/*#region ----------------- Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
}
.breadcrumbs.align-center ul {
  justify-content: center;
}
.breadcrumbs.in-line {
  width: 100%;
}
.breadcrumbs.in-line ul {
  flex-wrap: nowrap;
  overflow-x: auto;
  align-items: flex-start;
  justify-content: flex-start;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumbs .breadcrumb-item {
  font-size: 14px;
  font-weight: 400;
  color: #6f717d;
  white-space: nowrap;
}
.breadcrumbs .breadcrumb-link {
  position: relative;
  padding-left: 12px;
  color: #007cc6;
}
.breadcrumbs .breadcrumb-link::after {
  content: "/";
  position: relative;
  left: -6px;
  color: #6f717d;
}

/*#endregion -------------- Breadcrumbs */
/*#region ----------------- Masterpage */
.page-section {
  margin: 0 0 80px 0;
}

.page-main .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.page-main .main-title h5 {
  margin-bottom: 0;
}
.page-main .main-title h5 span {
  font-size: 16px;
  font-weight: 400;
  color: #6f717d;
  margin-right: 5px;
}
.page-main .main-title .select-group {
  margin: 0;
}
.page-main .main-title .filter-content {
  display: flex;
  align-items: center;
  justify-items: flex-start;
  flex-wrap: wrap;
}
.page-main .main-title .btn-show-filter {
  font-size: 14px;
  display: none;
  align-items: center;
  background-color: white;
  border: 1px solid #004284;
  height: 40px;
  border-radius: 5rem;
  padding: 2px 15px;
  vertical-align: middle;
  color: #004284;
  margin: 10px 0 10px 10px;
}
.page-main .main-title .btn-show-filter .fi {
  display: flex;
  font-size: 18px;
  margin-left: 6px;
}

.page-side .side-inner {
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 20px;
}
.page-side .category-list {
  list-style: disc;
  padding-right: 40px;
}
.page-side .category-list li {
  margin: 6px 0;
}
.page-side .category-list li a {
  display: block;
  color: #0f1227;
  font-size: 16px;
}
.page-side .category-list li a span {
  margin-right: 5px;
  color: #6f717d;
  font-size: 14px;
}
.page-side .category-list li a:hover {
  color: #007cc6;
}
.page-side .category-list li a:hover span {
  color: #007cc6;
}
.page-side .btn-close-sideFilter {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  color: white;
  background-color: #004284;
  border: none;
  padding: 0;
  font-size: 18px;
  border-radius: 0 0 20px 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.page-side .btn-close-sideFilter::before, .page-side .btn-close-sideFilter::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.page-side .btn-close-sideFilter::before {
  right: -12px;
  transform: rotate(90deg);
}
.page-side .btn-close-sideFilter::after {
  left: 0;
  top: unset;
  bottom: -12px;
  transform: rotate(-270deg);
}
.page-side .btn-close-sideFilter .fi {
  display: flex;
}

.tags-content .tags-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.tags-content .tags-list li {
  margin: 0 0 10px 10px;
}
.tags-content .tags-list li a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5rem;
  background-color: #f2f2f5;
  color: #6f717d;
}
.tags-content .tags-list li a:hover {
  background-color: rgba(0, 66, 132, 0.1);
  color: #004284;
}

.page-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
}
.page-overlay.active {
  display: block;
}

.page-info {
  margin: 10px 0 30px 0;
}
.page-info .page-inner {
  background-color: white;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  margin-top: 20px;
}
.page-info .title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-info .title h2 {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 24px 24px;
  background-color: #004284;
  padding: 0.8rem 2.2rem;
  color: white;
  position: relative;
}
.page-info .title h2::before, .page-info .title h2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.page-info .title h2::before {
  right: -24px;
  transform: rotate(90deg);
}
.page-info .title h2::after {
  left: -24px;
  transform: rotate(180deg);
}
.page-info .info-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px;
}
.page-info .info-list li {
  flex: 1 0 33.33%;
  width: 33.33%;
  padding: 0 5px;
  margin: 5px 0;
}
.page-info .info-list li .name {
  color: #6f717d;
}
.page-info .info-list li .desc {
  color: #004284;
}

.card-contact-info {
  margin-bottom: 20px;
}
.card-contact-info .card-inner {
  border: 1px solid #ddd;
  padding: 20px 0 20px 20px;
  border-radius: 20px;
  position: relative;
  display: grid;
  grid-template-columns: auto 64px;
  align-items: center;
  min-height: 145px;
}
.card-contact-info .card-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 100px;
  background-image: url(../images/shapes/border-curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.card-contact-info .info {
  padding-right: 30px;
  padding-left: 15px;
}
.card-contact-info .info p {
  color: #6f717d;
  margin-bottom: 0;
  font-size: 14px;
}
.card-contact-info .info .link {
  color: #007cc6;
  display: block;
}
.card-contact-info .thumb {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  padding: 10px;
  color: #004284;
  font-size: 24px;
  background-color: rgba(0, 66, 132, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-contact-info .thumb .fi {
  display: flex;
}

#spyscroll .spy-link.active {
  color: #007cc6;
  font-weight: 600;
}

.description-section {
  margin: 30px 0;
}
.description-section p {
  text-align: justify;
  color: #0f1227;
}
.description-section ul,
.description-section ol {
  padding-right: 30px;
  margin: 15px 0;
}
.description-section ul li,
.description-section ol li {
  margin: 6px 0;
  text-align: justify;
}
.description-section ul {
  list-style: disc;
}
.description-section ol {
  list-style: decimal;
}
.description-section .image-content {
  margin: 30px 0;
}
.description-section .image-content img {
  width: 100%;
  border-radius: 20px;
}

.about-status {
  position: relative;
  top: -50px;
}
.about-status .inner {
  background-color: white;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10rem;
  padding: 20px 30px;
  width: 750px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-status .item {
  border-left: 1px solid #ddd;
  flex: 0 0 33.33%;
  width: 33.33%;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
}
.about-status .item:last-child {
  border-left: none;
}
.about-status .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #004284;
}
.about-status .item .icon .fi {
  display: flex;
}
.about-status .item .info {
  padding-right: 10px;
}
.about-status .item .info h4 {
  font-size: 16px;
  font-weight: 400;
  color: #6f717d;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about-status .item .info h5 {
  font-size: 14px;
  font-weight: 400;
  color: #0f1227;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about-status .item .info h5 span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}

.search-content-filter {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 1024px) {
  .page-section {
    margin-bottom: 40px;
  }
  .page-main .main-title .btn-show-filter {
    display: flex;
  }
  .page-info {
    margin-top: 85px;
  }
  .page-info .page-inner {
    margin-top: 10px;
  }
  .page-info .info-list li {
    flex: 1 0 50%;
    width: 50%;
    font-size: 14px;
    margin: 5px 0;
  }
  .about-status {
    top: 0;
    margin: 30px 0;
  }
  .about-status .inner {
    width: 100%;
  }
  .about-status .item .info h4 {
    font-size: 14px;
  }
  .about-status .item .info h5 {
    font-size: 13px;
  }
  .about-status .item .info h5 span {
    font-size: 16px;
  }
  #filter-sidebar {
    position: fixed;
    right: -280px;
    top: 0;
    width: 280px;
    height: 100dvh;
    z-index: 1010;
    background-color: white;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
  }
  #filter-sidebar.active {
    right: 0;
  }
  #filter-sidebar .btn-close-sideFilter {
    display: flex;
  }
  #filter-sidebar .side-inner {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 15px;
  }
  #filter-sidebar .side-inner:first-child {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .description-section p {
    font-size: 14px;
  }
  .description-section ul li,
  .description-section ol li {
    font-size: 14px;
  }
  .card-contact-info .card-inner {
    min-height: 130px;
  }
}
@media (max-width: 640px) {
  .page-main .main-title {
    flex-direction: column;
  }
  .page-main .main-title h5 {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-main .main-title .filter-content {
    width: 100%;
  }
  .page-info .title h2 {
    font-size: 16px;
  }
  .page-info .info-list li {
    flex: 1 0 100%;
    width: 100%;
    font-size: 13px;
    margin: 3px 0;
  }
  .page-side .category-list li a {
    font-size: 14px;
  }
  .about-status .inner {
    padding: 0;
    flex-direction: column;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
  }
  .about-status .item {
    margin: 8px 0;
    flex: 1 0 100%;
    width: 100%;
    padding: 10px 0;
    border: none;
    background-color: white;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
  }
  .about-status .item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 410px) {
  .page-main .main-title .btn-show-filter {
    font-size: 13px;
    padding: 5px 10px;
  }
  .page-main .main-title .btn-show-filter .fi {
    font-size: 16px;
  }
  .page-main .main-title .select-group .select {
    font-size: 13px;
  }
}
/*#endregion -------------- Masterpage */
/*#region ----------------- Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.pagination .page-next,
.pagination .page-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f5;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  margin: 4px;
}
.pagination .page-next .fi,
.pagination .page-prev .fi {
  display: flex;
  font-size: 20px;
  color: #6f717d;
}
.pagination .page-next:hover,
.pagination .page-prev:hover {
  border-radius: 50%;
}
.pagination .page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  margin: 4px;
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.pagination .page-item.current {
  background-color: #004284;
  border-color: #004284;
  color: white;
}
.pagination .page-item.current:hover {
  background-color: #004284;
  color: white;
}
.pagination .page-item:hover {
  background-color: rgba(0, 66, 132, 0.1);
  color: #004284;
}

/*#endregion -------------- Pagination */
/*#region ----------------- User Profile */
.userprofile-section {
  margin: 10px 0 80px 0;
}
.userprofile-section .grid-layout {
  display: grid;
  grid-template-columns: 320px calc(100% - 320px);
}
.userprofile-section .grid-main {
  padding-right: 25px;
}
.userprofile-section .grid-main .main-inner {
  border: 1px solid #ddd;
  border-radius: 20px;
}
.userprofile-section .grid-side .side-inner {
  background-color: white;
  position: relative;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.userprofile-section .grid-side .user-info {
  padding: 20px 15px 30px 15px;
  position: relative;
  display: grid;
  border-radius: 0.5rem;
  grid-template-columns: 60px auto;
  align-items: center;
}
.userprofile-section .grid-side .user-info .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f5;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
}
.userprofile-section .grid-side .user-info .thumb .fi {
  display: flex;
  font-size: 24px;
  color: #6f717d;
}
.userprofile-section .grid-side .user-info .info {
  padding-right: 10px;
}
.userprofile-section .grid-side .user-info .user-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.userprofile-section .grid-side .user-info .wallet {
  font-size: 14px;
  color: #6f717d;
}
.userprofile-section .grid-side .user-info .wallet span {
  color: #0f1227;
  margin-right: 5px;
  font-size: 16px;
}
.userprofile-section .btn-shutdown {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  vertical-align: middle;
  color: #6f717d;
  cursor: pointer;
  font-size: 20px;
}
.userprofile-section .btn-shutdown .fi {
  display: flex;
}
.userprofile-section .btn-shutdown:hover {
  border-color: #004284;
  color: #004284;
}
.userprofile-section .menu-list {
  padding: 0 15px 20px 15px;
}
.userprofile-section .menu-list ul li a {
  display: block;
  position: relative;
  padding: 10px;
  border-radius: 10px;
}
.userprofile-section .menu-list ul li a:hover, .userprofile-section .menu-list ul li a:focus {
  background-color: transparent !important;
}
.userprofile-section .menu-list ul li a:hover .name, .userprofile-section .menu-list ul li a:focus .name {
  color: #004284;
}
.userprofile-section .menu-list ul li a:hover .name .fi, .userprofile-section .menu-list ul li a:focus .name .fi {
  color: #004284;
}
.userprofile-section .menu-list ul li .name {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #6f717d;
  padding-left: 35px;
}
.userprofile-section .menu-list ul li .name .fi {
  font-size: 21px;
  color: #9fa0a9;
  margin-left: 10px;
  display: flex;
}
.userprofile-section .menu-list ul li .badge {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.userprofile-section .menu-list ul li .badge.is-primary {
  background-color: #004284;
  color: white;
}
.userprofile-section .menu-list ul li.active a {
  background-color: rgba(0, 66, 132, 0.1) !important;
}
.userprofile-section .menu-list ul li.active .name {
  color: #004284;
}
.userprofile-section .menu-list ul li.active .name .fi {
  color: #004284;
}
.userprofile-section .main-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px 40px 20px;
  position: relative;
}
.userprofile-section .main-header .title .text {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0 0 24px 24px;
  background-color: #004284;
  padding: 0.8rem 2.2rem;
  color: white;
  position: relative;
}
.userprofile-section .main-header .title .text::before, .userprofile-section .main-header .title .text::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/shapes/curve-primary.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.userprofile-section .main-header .title .text::before {
  right: -24px;
  transform: rotate(90deg);
}
.userprofile-section .main-header .title .text::after {
  left: -24px;
  transform: rotate(180deg);
}
.userprofile-section .main-header .btn-actions {
  position: absolute;
  right: 20px;
  top: 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.userprofile-section .main-header .btn-back {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  vertical-align: middle;
  color: #6f717d;
  cursor: pointer;
  font-size: 24px;
}
.userprofile-section .main-header .btn-back .fi {
  display: flex;
}
.userprofile-section .main-header .btn-back:hover {
  border-color: #004284;
  color: #004284;
}
.userprofile-section .main-header .btn {
  height: 44px;
  font-size: 14px;
}
.userprofile-section .main-header .btn .icon {
  width: 36px;
  height: 36px;
}
.userprofile-section .main-header .btn.icon-right {
  padding-right: 3.1rem;
}
.userprofile-section .main-header .btn.icon-left {
  padding-left: 3.1rem;
}
.userprofile-section .main-body {
  padding: 10px 20px 30px 20px;
}

.card-big-btn.bg-primary .card-inner {
  background: #004284;
}
.card-big-btn.bg-primary:hover .card-inner {
  box-shadow: 0 6px 30px rgba(0, 66, 132, 0.4);
}
.card-big-btn.bg-secondary .card-inner {
  background: #007cc6;
}
.card-big-btn.bg-secondary:hover .card-inner {
  box-shadow: 0 6px 30px rgba(0, 124, 198, 0.4);
}
.card-big-btn:hover .card-inner {
  transform: translateY(-4px);
}
.card-big-btn:hover .icon {
  left: 15px;
}
.card-big-btn .card-inner {
  padding: 15px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.card-big-btn .thumb {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.card-big-btn .thumb .fi {
  display: flex;
}
.card-big-btn .info {
  padding: 0 10px 0 40px;
}
.card-big-btn .info h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-big-btn .info p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-big-btn .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  color: white;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.card-big-btn .icon .fi {
  display: flex;
}

.user-card-status .card-inner {
  border-radius: 12px;
  padding: 20px 10px 10px 10px;
  border: 1px solid #ddd;
}
.user-card-status .thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-card-status .thumb .fi {
  font-size: 24px;
  display: flex;
}
.user-card-status .info {
  margin-top: 15px;
  text-align: center;
}
.user-card-status .info h6 {
  color: #6f717d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.user-card-status .info h4 {
  font-size: 24px;
  color: #0f1227;
  margin-bottom: 0;
}
.user-card-status .info h4 span {
  font-size: 14px;
  font-weight: 400;
  color: #6f717d;
}

.card-ticket .card-inner {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
}
.card-ticket .c-header {
  display: grid;
  grid-template-columns: 48px auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 10px;
  padding-left: 40px;
}
.card-ticket .thumb {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background-color: #f2f2f5;
  color: #6f717d;
}
.card-ticket .thumb .fi {
  display: flex;
}
.card-ticket .info {
  padding-right: 15px;
}
.card-ticket .info h6 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-ticket .info ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-ticket .info ul li {
  font-size: 13px;
  font-weight: 400;
  position: relative;
  margin: 0 0 10px 25px;
  display: flex;
  align-items: center;
  color: #6f717d;
}
.card-ticket .info ul li::before {
  content: "";
  position: absolute;
  right: 3px;
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  font-family: uicons-regular-straight;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-ticket .info ul li.success {
  color: #00af63;
  padding: 5px 30px 5px 8px;
  background-color: rgba(0, 175, 99, 0.1);
  border-radius: 5rem;
}
.card-ticket .info ul li.success::before {
  content: "\f3c8";
  color: white;
  background-color: #00af63;
}
.card-ticket .info ul li.failed {
  color: #f81300;
  padding: 5px 30px 5px 8px;
  background-color: rgba(248, 19, 0, 0.1);
  border-radius: 5rem;
}
.card-ticket .info ul li.failed::before {
  content: "\f4f8";
  color: white;
  background-color: #f81300;
}
.card-ticket .info ul li.processing {
  color: #00e2e9;
  padding: 5px 30px 5px 8px;
  background-color: rgba(0, 226, 233, 0.1);
  border-radius: 5rem;
}
.card-ticket .info ul li.processing::before {
  content: "\f8cd";
  color: white;
  background-color: #00e2e9;
}
.card-ticket .info ul li.pending {
  color: #0f1227;
  padding: 5px 30px 5px 8px;
  background-color: rgba(230, 206, 0, 0.2);
  border-radius: 5rem;
}
.card-ticket .info ul li.pending::before {
  content: "\f5ee";
  color: white;
  background-color: #e6ce00;
}
.card-ticket .c-body p {
  font-size: 13px;
  text-align: justify;
  line-height: 22px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-ticket .dropdown {
  position: absolute;
  left: 10px;
  top: 10px;
}
.card-ticket .dropdown .dropdown-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f2f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-ticket .dropdown .dropdown-toggle .fi {
  display: flex;
  font-size: 20px;
}

.card-wallet {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  background-color: rgba(0, 124, 198, 0.1);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}
.card-wallet .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 30px;
  color: white;
  background-color: #007cc6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-wallet .icon .fi {
  display: flex;
  margin: 0;
}
.card-wallet .info {
  padding-right: 15px;
}
.card-wallet .info h4 {
  color: #0f1227;
  margin-bottom: 0;
}
.card-wallet .info h4 span {
  font-size: 16px;
  font-weight: 400;
  color: #6f717d;
}

@media (max-width: 1280px) {
  .userprofile-section .grid-layout {
    grid-template-columns: 280px calc(100% - 280px);
  }
  .user-card-status .thumb {
    width: 58px;
    height: 58px;
  }
  .user-card-status .thumb .fi {
    font-size: 24px;
  }
  .user-card-status .info h6 {
    font-size: 14px;
  }
  .user-card-status .info h3 {
    font-size: 1.5rem;
  }
  .card-big-btn .card-inner {
    grid-template-columns: 60px auto;
    padding: 15px;
  }
  .card-big-btn .thumb {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .card-big-btn .info {
    padding-left: 30px;
  }
  .card-big-btn .info h5 {
    font-size: 16px;
  }
  .card-big-btn .icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .userprofile-section {
    margin: 60px 0 50px 0;
  }
  .userprofile-section .grid-layout {
    grid-template-columns: 100%;
  }
  .userprofile-section .grid-side {
    margin-bottom: 20px;
  }
  .userprofile-section .grid-side .user-info {
    padding-left: 60px;
  }
  .userprofile-section .grid-main {
    padding-right: 0;
  }
  .userprofile-section .btn-shutdown {
    display: flex;
  }
  .userprofile-section .menu-list {
    padding-bottom: 5px;
  }
  .userprofile-section .menu-list ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    overflow-y: auto;
    padding-bottom: 5px;
  }
  .userprofile-section .menu-list ul li a {
    white-space: nowrap;
    display: flex;
  }
  .userprofile-section .menu-list ul li .name {
    padding-left: 0;
    margin-left: 10px;
    font-size: 14px;
  }
  .userprofile-section .menu-list ul li .name .fi {
    font-size: 18px;
  }
  .userprofile-section .menu-list ul li .badge {
    position: unset;
    left: unset;
    top: unset;
    transform: unset;
  }
  .userprofile-section .menu-list ul li:last-child {
    display: none;
  }
  .userprofile-section .main-title {
    padding: 20px;
  }
  .userprofile-section .main-title .title-inner h3 {
    font-size: 16px;
    text-align: center;
  }
  .userprofile-section .main-title .buttons-group {
    text-align: left;
  }
  .userprofile-section .main-title .buttons-group .btn {
    font-size: 14px;
    height: 2.5rem;
    min-height: 2.5rem;
  }
  .userprofile-section .main-body {
    border-radius: 0 0 10px 10px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .userprofile-section .btns-actions-main .btn {
    padding: 0 !important;
    width: 3rem;
    min-width: 3rem;
  }
  .userprofile-section .btns-actions-main .btn .icon {
    margin: 0 !important;
  }
  .userprofile-section .btns-actions-main .btn .text {
    display: none;
  }
  .userprofile-section .main-header .title .text {
    font-size: 16px;
    border-radius: 0 0 20px 20px;
    padding: 0.75rem 2rem;
  }
  .userprofile-section .main-header .title .text::before, .userprofile-section .main-header .title .text::after {
    width: 20px;
    height: 20px;
  }
  .userprofile-section .main-header .title .text::before {
    right: -20px;
  }
  .userprofile-section .main-header .title .text::after {
    left: -20px;
  }
  .user-card-status .info h6 {
    font-size: 13px;
  }
  .user-card-status .info h3 {
    font-size: 1.3rem;
  }
  .user-status .user-card-status {
    flex: 1 0 50%;
    width: 50%;
  }
}
@media (max-width: 640px) {
  .userprofile-section .main-title {
    margin-bottom: 0;
    padding: 20px 15px 20px 10px;
  }
  .userprofile-section .main-title .buttons-group .btn {
    font-size: 13px;
  }
  .user-card-status .thumb {
    width: 60px;
    height: 60px;
  }
  .user-card-status .info h6 {
    font-size: 12px;
  }
  .user-card-status .info h3 {
    font-size: 1.2rem;
  }
  .card-ticket .c-header {
    grid-template-columns: 40px auto;
  }
  .card-ticket .info h6 {
    font-size: 14px;
  }
  .card-ticket .info ul li {
    font-size: 12px;
    margin: 0 0 6px 20px;
  }
  .card-ticket .info ul li::before {
    width: 20px;
    height: 20px;
  }
}
/*#endregion -------------- User Profile */
/*#region ----------------- Badge */
.badge {
  min-width: 28px;
  height: 28px;
  padding: 2px 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.badge.is-danger {
  background-color: #f81300;
  color: white;
}
.badge.is-success {
  background-color: #00af63;
  color: white;
}
.badge.is-primary {
  background-color: #004284;
  color: white;
}
.badge.is-small {
  font-size: 14px;
  min-width: 25px;
  height: 25px;
}

/*#endregion -------------- Badge */
/*#region ----------------- Tabs */
.tabs {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.tabs ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow-y: auto;
}

.tab-item {
  cursor: pointer;
}
.tab-item.active .tab-link {
  border-color: #004284 !important;
  color: #004284;
  background-color: rgba(0, 66, 132, 0.1);
}
.tab-item .tab-link {
  border-bottom: 3px solid transparent;
  color: #9fa0a9;
  white-space: nowrap;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
.tab-item .tab-link .fi {
  font-size: 20px;
  margin-left: 8px;
  display: flex;
}

.tab-content .tab-panel {
  display: none;
}
.tab-content .tab-panel.active {
  display: block;
}

/*#endregion -------------- Tabs */
/*#region ----------------- Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle.icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown .dropdown-toggle .fi {
  font-size: 24px;
}
.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: 1;
  text-align: right;
  padding: 5px;
}
.dropdown .dropdown-menu.menu-left {
  left: unset;
  right: 0;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 8px 10px;
  text-decoration: none;
  color: #0f1227;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 66, 132, 0.1);
  color: #004284;
}
.dropdown .dropdown-menu .dropdown-item:hover .fi {
  color: #004284;
}
.dropdown .dropdown-menu .dropdown-item .fi {
  margin-left: 8px;
  font-size: 18px;
  display: flex;
  color: #9fa0a9;
}
.dropdown .dropdown-menu.open {
  display: flex;
}

/*#endregion -------------- Dropdown */
.empty-box {
  margin: 3rem 0;
  width: 100%;
}
.empty-box .thumb {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.empty-box .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.empty-box .thumb.empty-gift-card::before {
  background-image: url(../assets/images/empty-boxs/empty-box.svg);
}
.empty-box .thumb.empty-transaction::before {
  background-image: url(../assets/images/empty-boxs/empty-transaction.svg);
}
.empty-box .thumb.empty-message::before {
  background-image: url(../assets/images/empty-boxs/empty-message.svg);
}
.empty-box .thumb.empty-order::before {
  background-image: url(../assets/images/empty-boxs/empty-order.svg);
}
.empty-box h6 {
  text-align: center;
  margin: 20px 0 0 0;
  color: #6f717d;
}

.page-error {
  margin: 90px 0;
}
.page-error .image-contnet .img-inner {
  width: 75%;
  margin-right: auto;
  border-radius: 25px;
}
.page-error .image-contnet .img-inner img {
  width: 100%;
}
.page-error .text-content .number {
  font-size: 6rem;
  line-height: 1;
  color: #004284;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .page-error .image-contnet .img-inner {
    width: 350px;
    margin: 0 auto;
  }
  .page-error .text-content {
    text-align: center;
  }
  .page-error .text-content .number {
    font-size: 5rem;
  }
}
@media (max-width: 640px) {
  .page-error .image-contnet .img-inner {
    width: 80%;
    margin: 0 auto;
  }
}
/*#region ----------------- Landing Ai */
.landing-hero-ai {
  position: relative;
  padding-top: 50px;
}
.landing-hero-ai::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/landing-hero-ai.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}
.landing-hero-ai .curve-right,
.landing-hero-ai .curve-left {
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.landing-hero-ai .curve-right {
  right: 0;
  background-image: url(../images/bg/subtract-shape.svg);
}
.landing-hero-ai .curve-left {
  left: 0;
  background-image: url(../images/bg/subtract-shape.svg);
  transform: scaleX(-1);
}
.landing-hero-ai .text-content {
  padding-right: 60px;
}
.landing-hero-ai .text-content h1 {
  color: white;
}
.landing-hero-ai .text-content h1 span {
  color: #00e2e9;
  display: block;
  margin-bottom: 10px;
}
.landing-hero-ai .text-content p {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.landing-hero-ai .text-content .btns-action {
  margin-top: 30px;
}
.landing-hero-ai .image-content {
  position: relative;
  top: 90px;
}
.landing-hero-ai .image-content .img-inner {
  width: 500px;
  margin: 0 auto;
}
.landing-hero-ai .image-content .img-inner img {
  width: 100%;
}

.landing-description {
  margin: 140px 0 60px 0;
}
.landing-description .section-inner {
  padding: 40px;
  border-radius: 40px;
  border: 1px solid #ddd;
}
.landing-description .text p {
  color: #6f717d;
  text-align: justify;
}
.landing-description .text p:last-child {
  margin-bottom: 0;
}

.landing-property {
  margin: 50px 0;
}

.card-property-ai {
  margin: 10px 0;
}
.card-property-ai .card-inner {
  display: grid;
  grid-template-columns: 64px auto;
  background-color: #f2f2f5;
  padding: 25px;
  border-radius: 30px;
}
.card-property-ai .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004284;
}
.card-property-ai .icon .fi {
  display: flex;
}
.card-property-ai .info {
  padding-right: 10px;
}
.card-property-ai .info h3 {
  font-size: 1.2rem;
}
.card-property-ai .info p {
  font-size: 14px;
  line-height: 23px;
  text-align: justify;
  color: #6f717d;
  margin-bottom: 0;
}

.landing-comments-ai {
  margin: 140px 0 50px 0;
  position: relative;
  padding: 70px 0 50px 0;
}
.landing-comments-ai::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: #f2f2f5;
  border-radius: 0 100px 100px 0;
  z-index: -1;
}
.landing-comments-ai::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 100px;
  width: 342px;
  height: 50px;
  background-image: url(../images/icons/COMMENT.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.landing-comments-ai .section-inner {
  display: grid;
  grid-template-columns: 300px calc(100% - 300px);
  align-items: center;
}
.landing-comments-ai .title-content h2 {
  font-size: 1.6rem;
}
.landing-comments-ai .title-content h2 span {
  font-size: 2rem;
  margin: 10px 0;
  color: #f79926;
  display: block;
}

.swiper-landing-comments-ai .swiper-wrapper {
  padding: 50px 0;
}
.swiper-landing-comments-ai .swiper-pagination-bullet {
  border: 2px solid #004284;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.swiper-landing-comments-ai .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004284;
  width: 24px;
}

.card-comment {
  padding: 0 10px;
}
.card-comment .card-inner {
  border-radius: 25px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 8px 45px rgba(0, 0, 0, 0.12);
  position: relative;
}
.card-comment .card-inner::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  background-image: url(../images/icons/quote.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.card-comment .c-header {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
}
.card-comment .c-header .thumb {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
}
.card-comment .c-header .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-comment .c-header .user-info {
  margin-right: 10px;
  padding-left: 60px;
}
.card-comment .c-header .user-info h4 {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.card-comment .c-header .user-info p {
  font-size: 14px;
  color: #f79926;
  margin-bottom: 0;
}
.card-comment .text {
  margin-top: 15px;
}
.card-comment .text p {
  font-size: 14px;
  color: #0f1227;
}

@media (max-width: 1281px) {
  .landing-hero-ai .curve-right,
  .landing-hero-ai .curve-left {
    width: 160px;
    height: 160px;
  }
  .landing-hero-ai .image-content .img-inner {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .landing-hero-ai {
    padding-top: 120px;
  }
  .landing-hero-ai .curve-right,
  .landing-hero-ai .curve-left {
    width: 150px;
    height: 150px;
  }
  .landing-hero-ai .text-content {
    padding-right: 0;
    text-align: center;
  }
  .landing-hero-ai .text-content h1 {
    font-size: 2.2rem;
  }
  .landing-hero-ai .image-content {
    top: 40px;
  }
  .landing-hero-ai .image-content .img-inner {
    width: 380px;
  }
  .landing-description {
    margin: 100px 0 50px 0;
  }
  .landing-description .section-inner {
    padding: 40px 30px 30px 30px;
  }
  .landing-comments-ai .section-inner {
    grid-template-columns: 100%;
  }
  .swiper-landing-comments-ai .swiper-wrapper {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .landing-description {
    margin: 100px 0 50px 0;
  }
  .landing-description .section-inner {
    padding: 40px 20px 20px 20px;
  }
  .landing-description .text p {
    font-size: 14px;
  }
  .landing-comments-ai::after {
    width: 230px;
    height: 33px;
    left: 50px;
  }
}
@media (max-width: 640px) {
  .landing-hero-ai .curve-right,
  .landing-hero-ai .curve-left {
    width: 100px;
    height: 100px;
  }
  .landing-hero-ai .text-content h1 {
    font-size: 2rem;
  }
  .landing-hero-ai .image-content .img-inner {
    width: 80%;
  }
  .card-property-ai .card-inner {
    grid-template-columns: 58px auto;
    padding: 20px;
    border-radius: 25px;
  }
  .card-property-ai .icon {
    width: 58px;
    height: 58px;
  }
  .card-property-ai .info h3 {
    font-size: 1rem;
  }
  .card-property-ai .info p {
    font-size: 13px;
  }
}
/*#endregion -------------- Landing Ai */