@charset "UTF-8";
/*#region ----------------- X) General */
@import url(../css/fontface.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: IRANYEKAN !important;
  font-weight: 400;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: IRANYEKAN !important;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

h4 {
  font-size: 1.5rem;
  font-weight: 800;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-weight: 400;
}

b,
strong {
  font-weight: bolder;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #003393;
  color: white;
}

::selection {
  background-color: #003393;
  color: white;
}

.fi {
  display: inline-block;
}

/*#endregion -------------- X) General */
/*#region ----------------- Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 0.65rem;
  font-size: 16px;
  border: none;
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  z-index: 0;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .fi {
  font-size: 22px;
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.icon-left {
  padding-left: 3.2rem;
}
.icon-left .fi {
  position: absolute;
  top: 12px;
  left: 18px;
}

.icon-right {
  padding-right: 3.2rem;
}
.icon-right .fi {
  position: absolute;
  top: 12px;
  right: 18px;
}

.btn-primary {
  background-color: #003393;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  color: #242426;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  background-color: #ffc71c;
  height: 100%;
  bottom: unset;
  top: 0;
}

.btn-secondary {
  background-color: #ffc71c;
  color: #242426;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: white;
}
.btn-secondary:hover::before, .btn-secondary:focus::before {
  background-color: #003393;
  height: 100%;
  bottom: unset;
  top: 0;
}

.btn-primary-outline {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border: 1px solid #003393;
  background-color: white;
  color: #003393;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  color: #003393;
}
.btn-primary-outline:hover::before, .btn-primary-outline:focus::before {
  background-color: rgba(0, 51, 147, 0.15);
  height: 100%;
  bottom: unset;
  top: 0;
}

.btn-secondary-outline {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border: 1px solid #707072;
  background-color: transparent;
  color: #707072;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  color: #242426;
  border-color: #242426;
}
.btn-secondary-outline:hover::before, .btn-secondary-outline:focus::before {
  background-color: rgba(36, 36, 38, 0.1);
  height: 100%;
  bottom: unset;
  top: 0;
}

.btn-link {
  font-size: 16px;
  font-weight: 600;
  color: #003393;
  text-align: center;
}

/*#endregion -------------- Buttons */
/*#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: 15px;
}
.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-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}
.modal .modal-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #242426;
}
.modal .modal-title .fi {
  display: flex;
  margin-left: 10px;
  font-size: 20px;
  color: #94a3b8;
}
.modal .btn-close {
  width: 30px;
  height: 30px;
  background-color: transparent;
  padding: 4px;
  border: none;
  color: #94a3b8;
}
.modal .btn-close:hover {
  color: #707072;
}
.modal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 2rem 1rem 1rem 1rem;
  height: 100%;
}
.modal .modal-body .title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.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.6);
}

.modal-share h6 {
  margin-bottom: 20px;
  text-align: center;
  color: #242426;
}
.modal-share .copy-link {
  display: grid;
  grid-template-columns: auto 80px;
}
.modal-share .copy-link .input {
  background-color: #f4f4f5;
  border: 1px solid #d9d9d9;
  padding: 8px 15px;
  border-radius: 0 10px 10px 0;
}
.modal-share .copy-link .btn-copy {
  background-color: #003393;
  color: white;
  border-radius: 10px 0 0 10px;
  border: none;
}

@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 ----------------- Forms */
.inputgroup {
  position: relative;
  margin-bottom: 1.2rem;
}
.inputgroup label {
  font-size: 14px;
  font-weight: 400;
  color: #242426;
  display: block;
  margin-bottom: 8px;
}
.inputgroup .input {
  width: 100%;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 0.6rem;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #242426;
  text-align: right;
  transition: all 0.2s ease-in-out;
}
.inputgroup .input:hover {
  border-color: #94a3b8;
}
.inputgroup .input:focus {
  border-color: #003393;
}
.inputgroup .input:focus ~ .icon {
  color: #003393;
}
.inputgroup .msg-alert {
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  margin: 5px 0;
}
.inputgroup .msg-alert.error {
  color: #ef4444;
}
.inputgroup .msg-alert.success {
  color: #00b854;
}
.inputgroup.center .input {
  text-align: center;
  padding: 3px 15px 3px 15px;
}
.inputgroup.big-font .input {
  font-size: 18px;
}
.inputgroup.nopadding .input {
  padding: 3px 15px 3px 15px;
}

.checkbox-group {
  margin: 10px 0;
}
.checkbox-group .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #242426;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-group .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  float: right;
  background-color: white;
}
.checkbox-group .form-check-input::before {
  content: "";
  font-family: uicons-regular-straight;
  font-size: 12px;
}
.checkbox-group .form-check-input:checked {
  border-color: #003393;
  background-color: #003393;
}
.checkbox-group .form-check-input:checked::before {
  content: "שׂ";
  color: white;
}
.checkbox-group .form-check-input:hover, .checkbox-group .form-check-input:focus {
  box-shadow: none;
}
.checkbox-group.margin-top {
  margin-top: 35px;
}

.form-radio {
  margin: 10px 0;
}
.form-radio .form-radio-label {
  font-size: 16px;
  font-weight: 400;
  color: #242426;
  cursor: pointer;
  padding-right: 10px;
}
.form-radio .form-radio-input {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.form-radio .form-radio-input:checked {
  background-color: #003393;
  border-color: #003393;
}
.form-radio .form-radio-input::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

.textarea-group label {
  font-size: 14px;
  font-weight: 400;
  color: #242426;
  display: block;
  margin-bottom: 8px;
}
.textarea-group .textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0.6rem;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #242426;
  transition: all 0.2s ease-in-out;
}
.textarea-group .textarea:hover {
  border-color: #94a3b8;
}
.textarea-group .textarea:focus {
  border-color: #003393;
}

.select-group {
  position: relative;
  margin-bottom: 1.2rem;
}
.select-group label {
  font-size: 14px;
  font-weight: 400;
  color: #242426;
  display: block;
  margin-bottom: 8px;
}
.select-group .select {
  height: 44px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0.6rem;
  border: 1px solid #d9d9d9;
  padding: 5px 15px;
  color: #242426;
  text-align: right;
  background-color: white;
  transition: all 0.2s ease-in-out;
}
.select-group .select:hover {
  box-shadow: none;
  border-color: #94a3b8;
}
.select-group .select:focus {
  box-shadow: none;
  border-color: #003393;
}

.textarea-plugin-content {
  margin: 1.2rem 0;
}
.textarea-plugin-content label {
  font-size: 14px;
  font-weight: 400;
  color: #242426;
  display: block;
  margin-bottom: 8px;
}

/*#endregion -------------- Forms */
/*#region ----------------- Navbar */
.mynavbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.mynavbar .inner {
  display: grid;
  grid-template-columns: 180px 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 a {
  font-size: 16px;
  color: #242426;
  display: block;
  padding: 30px 10px;
  position: relative;
}
.mynavbar .nav-links ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background-color: #ffc71c;
  transition: all 0.2s ease-in-out;
}
.mynavbar .nav-links ul li a:hover::before {
  width: 100%;
}
.mynavbar .nav-links ul li.active a {
  font-weight: 800;
}
.mynavbar .nav-links ul li.active a::before {
  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 .item.login {
  position: relative;
}
.mynavbar .nav-actions .item.login:hover .user-menuList {
  display: block;
}
.mynavbar .nav-actions .item.login .btn {
  padding-left: 2.2rem;
}
.mynavbar .nav-actions .item.login .btn .fi {
  left: 10px;
}
.mynavbar .user-menuList {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.mynavbar .user-menuList ul {
  padding: 10px 0;
}
.mynavbar .user-menuList ul li a {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #242426;
}
.mynavbar .user-menuList ul li .fi {
  margin-left: 10px;
  font-size: 18px;
  color: #94a3b8;
  display: flex;
}
.mynavbar .user-menuList ul li:hover a {
  color: #003393;
  background-color: #f4f4f5;
}
.mynavbar .user-menuList ul li:hover .fi {
  color: #003393;
}
.mynavbar .user-menuList hr {
  margin: 0.5rem 0;
}
.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: #707072;
}
.mynavbar .btn-show-mobile-menu .fi {
  display: flex;
}

#sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  z-index: 2002;
  background: white;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
  padding-bottom: 50px;
}
#sidebar-menu.active {
  right: 0;
}
#sidebar-menu .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  background-color: #f4f4f5;
}
#sidebar-menu .sidebar-header .btn-close-menu {
  position: absolute;
  left: 15px;
  top: 20px;
  width: 40px;
  height: 40px;
  color: #94a3b8;
  background-color: transparent;
  border: none;
  padding: 0;
  opacity: 0.4;
  font-size: 22px;
}
#sidebar-menu .sidebar-header .btn-close-menu:hover {
  opacity: 1;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
  width: 150px;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sidebar-menu .category-list {
  margin-top: 20px;
}
#sidebar-menu .category-list .item a {
  padding: 10px 1rem;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #242426;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .category-list .item a:hover {
  color: #003393;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 1024px) {
  .mynavbar {
    position: fixed;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .mynavbar .inner {
    grid-template-columns: 80px 150px 1fr;
    padding: 10px 0;
  }
  .mynavbar .nav-logo a img {
    border-radius: 16px;
  }
  .mynavbar .nav-links {
    display: none;
  }
  .mynavbar .mobile-menu {
    display: block;
  }
  .mynavbar .nav-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .mynavbar .nav-actions .item.login .btn .fi {
    top: 10px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .mynavbar .inner {
    grid-template-columns: 60px 110px auto;
  }
  .mynavbar .nav-actions .btn {
    padding: 0.6rem;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 350px) {
  #sidebar-menu {
    width: 100%;
    right: -400px;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Login */
.wrapper-login {
  min-height: 100vh;
  overflow-y: auto;
  background-image: url(../images/bg/shouts-elevator-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.wrapper-login::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.wrapper-login .inner {
  min-height: 100vh;
  position: relative;
  z-index: 50;
  padding: 3rem 1rem;
}

.login-section {
  display: none;
}
.login-section.active {
  display: block;
}
.login-section .links-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-section .showCountdown {
  font-size: 17px;
  font-weight: 500;
  color: #242426;
  padding: 0 20px;
}
.login-section .btn-resend-sms {
  display: none;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  color: #ffc71c;
  -webkit-text-decoration: underline 1px dashed #ffc71c;
          text-decoration: underline 1px dashed #ffc71c;
}
.login-section .btn-change-number {
  background-color: transparent;
  font-size: 14px;
  color: #60a5fa;
  border: none;
}
.login-section .btn-change-number .fi {
  margin-left: 6px;
  font-size: 16px;
  position: relative;
  top: 2px;
}

.loader {
  display: none;
  align-items: center;
  justify-content: center;
}
.loader.fix-height {
  height: 160px;
}
.loader .load-content {
  border: 4px solid #f4f4f5;
  border-radius: 50%;
  border-top: 4px solid #003393;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}
.loader.active {
  display: flex;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .wrapper-login .form-content {
    width: 100%;
  }
}
/*#endregion -------------- Login */
/*#region ----------------- Hero */
.home-hero {
  margin: 110px 0 150px 0;
  position: relative;
}
.home-hero::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 500px;
  height: 300px;
  background-color: #f4f4f5;
  border-radius: 0 0 10rem 0;
}

.swiper-home .swiper-slide a {
  display: block;
}
.swiper-home .swiper-slide img {
  width: 100%;
  border-radius: 15px;
}
.swiper-home .swiper-button-next,
.swiper-home .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: unset !important;
  bottom: 20px;
}
.swiper-home .swiper-button-next::after,
.swiper-home .swiper-button-prev::after {
  font-size: 20px;
  color: #707072;
}
.swiper-home .swiper-button-next {
  left: unset !important;
  right: 70px !important;
}
.swiper-home .swiper-button-prev {
  right: 20px !important;
}
.swiper-home .swiper-pagination-bullet {
  background-color: white;
}
@media (max-width: 1024px) {
  .home-hero {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .home-hero::before {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .home-hero {
    margin-top: 90px;
  }
  .swiper-home .swiper-button-next,
  .swiper-home .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .swiper-home .swiper-button-next::after,
  .swiper-home .swiper-button-prev::after {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .swiper-home .swiper-button-next,
  .swiper-home .swiper-button-prev {
    width: 30px;
    height: 30px;
    bottom: 10px;
  }
  .swiper-home .swiper-button-next::after,
  .swiper-home .swiper-button-prev::after {
    font-size: 14px;
  }
  .swiper-home .swiper-button-next {
    right: 50px !important;
  }
  .swiper-home .swiper-button-prev {
    right: 10px !important;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 1.5rem;
  text-align: center;
}
.page-title .title-inner {
  position: relative;
  width: 700px;
  margin: 0 auto;
}
.page-title h2 {
  margin-bottom: 0;
  color: #242426;
}
.page-title h2.fa {
  font-size: 28px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.page-title h2.en {
  font-size: 90px;
  font-weight: 800;
  opacity: 0.06;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.page-title p {
  font-size: 18px;
  font-weight: 400;
  color: #707072;
  margin-bottom: 0;
  margin-top: 20px;
}
.page-title.align-right {
  text-align: right;
}
.page-title.align-right .title-inner {
  width: 100%;
}
.page-title.align-right span::after {
  display: none;
}

@media (max-width: 1024px) {
  .page-title .title-inner {
    width: 80%;
  }
  .page-title h2.fa {
    font-size: 24px;
  }
  .page-title h2.en {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .page-title h2.fa {
    font-size: 22px;
  }
  .page-title h2.en {
    font-size: 60px;
  }
}
@media (max-width: 640px) {
  .page-title h2.fa {
    font-size: 20px;
  }
  .page-title h2.en {
    font-size: 40px;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- Service */
.services-section {
  margin: 80px 0;
}

.swiper-services {
  margin-top: 3rem;
}
.swiper-services .swiper-wrapper {
  padding-bottom: 40px;
}
.swiper-services .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003393;
}

.card-service {
  padding: 8px;
}
.card-service .card-inner {
  border: 1px solid #d9d9d9;
  background-color: white;
  border-radius: 20px;
  padding: 15px;
}
.card-service .c-header {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
}
.card-service .c-header .thumb img {
  width: 100%;
}
.card-service .c-header h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
  margin-right: 10px;
}
.card-service .c-body {
  padding-top: 10px;
}
.card-service .c-body p {
  font-size: 14px;
  margin-bottom: 0;
  color: #707072;
}

@media (max-width: 768px) {
  .card-service .c-header {
    grid-template-columns: 48px auto;
  }
  .card-service .c-header h3 {
    font-size: 16px;
  }
  .card-service .c-body p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .card-service .c-header {
    grid-template-columns: 100%;
    text-align: center;
  }
  .card-service .c-header .thumb {
    width: 48px;
    margin: 0 auto;
  }
  .card-service .c-header h3 {
    margin-top: 10px;
  }
  .card-service .c-body p {
    text-align: center;
  }
}
/*#endregion -------------- Service */
/*#region ----------------- About */
.about-section {
  margin: 90px 0;
}
.about-section .section-inner {
  padding: 40px 60px 40px 0;
  position: relative;
}
.about-section .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-color: #f4f4f5;
  border-radius: 40px 0 40px 40px;
}
.about-section .section-inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  width: 30px;
  height: 160px;
  background-image: url(../images/shape-line-two-color.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.about-section .text-content {
  position: relative;
  padding-left: 30px;
}
.about-section .text-content .desc p {
  font-size: 16px;
  color: #242426;
}
.about-section .text-content ul {
  margin: 30px 0;
}
.about-section .text-content ul li {
  color: #242426;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-section .text-content ul li .fi {
  margin-left: 10px;
  color: #003393;
  position: relative;
  font-size: 24px;
  display: flex;
}

@media (max-width: 1024px) {
  .about-section {
    margin: 80px 0;
  }
  .about-section .section-inner {
    padding: 30px;
  }
  .about-section .section-inner::before {
    width: 100%;
    height: 70%;
  }
  .about-section .section-inner::after {
    width: 22px;
    height: 116px;
  }
  .about-section .text-content {
    padding-left: 0;
    padding-right: 20px;
  }
  .about-section .text-content .btns-action {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .about-section {
    margin: 60px 0;
  }
}
/*#endregion -------------- About */
/*#region ----------------- FreeLancer */
.freelancer-section {
  margin: 100px 0;
  position: relative;
}
.freelancer-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 150px;
  height: 320px;
  background-color: #ffc71c;
  border-radius: 10rem 0 0 0;
}
.freelancer-section .text-content {
  padding-left: 30px;
}

.swiper-freelancers .swiper-wrapper {
  padding-bottom: 50px;
}
.swiper-freelancers .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #003393;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.swiper-freelancers .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003393;
}

.card-freelancer-stand .card-inner {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.card-freelancer-stand .card-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 51, 147, 0), #003393);
}
.card-freelancer-stand .thumb img {
  width: 100%;
}
.card-freelancer-stand .info {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px 15px;
}
.card-freelancer-stand .info h3,
.card-freelancer-stand .info h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-freelancer-stand .info h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  position: relative;
  padding-right: 20px;
}
.card-freelancer-stand .info h3::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #ffc71c;
  border-radius: 5px;
}
.card-freelancer-stand .info h4 {
  font-size: 14px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  padding-right: 20px;
}

.installer-details {
  margin: 120px 0 80px 0;
}
.installer-details .grid-layout {
  display: grid;
  grid-template-columns: 400px calc(100% - 400px);
}
.installer-details .grid-main {
  padding-right: 20px;
}
.installer-details .grid-side .inner {
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
  border-radius: 10px;
  padding: 15px;
  position: sticky;
  top: 100px;
}
.installer-details .grid-side .btns-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.installer-details .grid-side .btns-action .btn {
  flex-grow: 1;
}
.installer-details .logo .thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}
.installer-details .logo .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.installer-details .logo .name {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
}
.installer-details .logo .name .fi {
  color: #60a5fa;
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.installer-details .logo .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.installer-details .logo .rating .stars-listS {
  display: flex;
  align-items: center;
  justify-content: center;
}
.installer-details .logo .rating .stars-listS li {
  margin: 1px;
}
.installer-details .logo .rating .stars-listS li .fi {
  display: flex;
}
.installer-details .logo .rating .stars-listS li .fi-rs-star {
  color: #707072;
}
.installer-details .logo .rating .stars-listS li .fi-ss-star {
  color: #fbbf24;
}
.installer-details .logo .rating span {
  margin-right: 5px;
  font-size: 14px;
  color: #707072;
}
.installer-details .status {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
  margin: 15px 0;
}
.installer-details .status.grid-3 ul li {
  flex: 0 0 33.33%;
  width: 33.33%;
}
.installer-details .status.grid-2 ul li {
  flex: 0 0 50%;
  width: 50%;
}
.installer-details .status ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.installer-details .status ul li {
  text-align: center;
  padding: 0 5px;
}
.installer-details .status ul li .title {
  font-size: 14px;
  font-weight: 500;
  color: #707072;
  margin-top: 5px;
  display: block;
}
.installer-details .status ul li .number {
  font-size: 18px;
  font-weight: 800;
  color: #242426;
  display: block;
}
.installer-details .user-info {
  margin: 20px 0;
}
.installer-details .user-info ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.installer-details .user-info ul li .title {
  color: #707072;
}
.installer-details .user-info ul li .desc {
  color: #242426;
}
.installer-details .page-image-header img {
  width: 100%;
  border-radius: 10px;
}
.installer-details .main-tabs {
  margin: 1rem 0;
}
.installer-details .main-tabs .nav-tabs {
  overflow-x: auto;
}
.installer-details .main-tabs .nav-tabs .nav-link {
  white-space: nowrap;
}

@media (max-width: 1281px) {
  .card-freelancer-stand .info h3 {
    font-size: 16px;
  }
  .card-freelancer-stand .info h4 {
    font-size: 13px;
  }
  .installer-details .grid-layout {
    grid-template-columns: 300px calc(100% - 300px);
  }
  .installer-details .grid-side .btns-action {
    flex-direction: column;
  }
  .installer-details .grid-side .btns-action .btn {
    flex: 0 0 100%;
    width: 100%;
    font-size: 14px;
  }
  .installer-details .grid-side .btns-action .btn .fi {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .freelancer-section {
    margin: 80px 0;
  }
  .freelancer-section .text-content {
    padding-left: 0;
  }
  .installer-details {
    margin-top: 100px;
  }
  .installer-details .grid-layout {
    grid-template-columns: 100%;
  }
  .installer-details .grid-main {
    padding-right: 0;
  }
  .installer-details .page-image-header {
    display: none;
  }
  .installer-details .tab-content {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .freelancer-section {
    margin: 60px 0;
  }
}
@media (max-width: 640px) {
  .card-freelancer-stand .info h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card-freelancer-stand .info h4 {
    font-size: 12px;
  }
}
/*#endregion -------------- FreeLancer */
/*#region ----------------- Status */
.status-section {
  margin: 80px 0;
  background-image: url(../images/bg/shouts-elevator-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.status-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 51, 147, 0.8);
}

@media (max-width: 1024px) {
  .status-section {
    margin: 60px 0;
    padding: 60px 0;
  }
}
/*#endregion -------------- Status */
/*#region ----------------- Request */
.last-request {
  padding: 50px 0;
  overflow: hidden;
}

.swiper-lastRequest .swiper-wrapper {
  padding: 10px 0 40px 0;
}
.swiper-lastRequest .swiper-slide-shadow {
  background-color: transparent !important;
}
.swiper-lastRequest .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003393;
}

.card-request {
  padding: 20px;
}
.card-request .card-inner {
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
}
.card-request .c-title {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
}
.card-request .c-title .thumb img {
  width: 100%;
}
.card-request .c-title h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #242426;
  margin-right: 10px;
}
.card-request .c-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}
.card-request .c-body .project,
.card-request .c-body .info {
  flex: 0 0 50%;
  width: 50%;
}
.card-request .c-body .project ul li,
.card-request .c-body .info ul li {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #242426;
}
.card-request .c-body .project ul li span,
.card-request .c-body .info ul li span {
  color: #707072;
  font-weight: 400;
  margin-left: 10px;
}
.card-request .c-body .project ul li .fi,
.card-request .c-body .info ul li .fi {
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-left: 10px;
  color: #94a3b8;
}
.card-request .c-footer {
  text-align: left;
}
.card-request.type-2 {
  padding: 0;
  margin-bottom: 15px;
}
.card-request.type-2 .card-inner {
  box-shadow: none;
  background-color: white;
  padding: 0 0 15px 0;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;
}
.card-request.type-2 .c-title {
  border: none;
  padding-bottom: 5px;
  grid-template-columns: 30px auto;
}
.card-request.type-2 .c-title h3 {
  font-size: 16px;
}
.card-request.type-2 .c-body .project ul li,
.card-request.type-2 .c-body .info ul li {
  margin: 5px 0;
}
.card-request.type-2 .c-body .project ul li .fi,
.card-request.type-2 .c-body .info ul li .fi {
  font-size: 20px;
}

@media (max-width: 640px) {
  .last-request {
    padding: 0 10px;
  }
  .card-request .card-inner {
    padding: 15px;
  }
  .card-request .c-title {
    grid-template-columns: 30px auto;
    padding-bottom: 15px;
  }
  .card-request .c-title h3 {
    font-size: 16px;
  }
  .card-request .c-body .project ul li,
  .card-request .c-body .info ul li {
    font-size: 13px;
    margin: 8px 0;
  }
  .card-request .c-body .project ul li .fi,
  .card-request .c-body .info ul li .fi {
    font-size: 15px !important;
  }
}
@media (max-width: 575px) {
  .card-request .c-title h3 {
    font-size: 14px;
  }
  .card-request .c-body {
    flex-wrap: wrap;
  }
  .card-request .c-body .project,
  .card-request .c-body .info {
    flex: 1 0 100%;
    width: 100%;
  }
}
/*#endregion -------------- Request */
/*#region ----------------- Blogs */
.blogs-home {
  margin: 50px 0 80px 0;
}
.blogs-home .section-inner {
  position: relative;
}

.swiper-blog-home {
  position: unset !important;
}
.swiper-blog-home .swiper-wrapper {
  padding: 30px 0;
}
.swiper-blog-home .swiper-button-next,
.swiper-blog-home .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.swiper-blog-home .swiper-button-next::after,
.swiper-blog-home .swiper-button-prev::after {
  font-size: 20px;
  color: #707072;
}
.swiper-blog-home .swiper-button-next {
  left: -15px !important;
}
.swiper-blog-home .swiper-button-prev {
  right: -15px !important;
}

.card-blog {
  padding: 10px;
}
.card-blog .card-inner {
  display: block;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  padding: 10px;
}
.card-blog .thumb {
  position: relative;
}
.card-blog .thumb img {
  border-radius: 8px;
}
.card-blog .date {
  position: absolute;
  left: 10px;
  bottom: -12px;
  background-color: #003393;
  color: white;
  font-size: 14px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 20px;
}
.card-blog .info {
  padding: 25px 10px 10px 10px;
}
.card-blog .info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card-blog .info p {
  font-size: 14px;
  font-weight: normal;
  color: #707072;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.card-blog .c-footer {
  text-align: left;
}
.card-blog .c-footer span {
  font-size: 14px;
  font-weight: 600;
  color: #003393;
}
.card-blog .c-footer span .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
}
.card-blog.type-row {
  padding: 0;
  margin-bottom: 20px;
}
.card-blog.type-row .card-inner {
  display: grid;
  grid-template-columns: 250px auto;
}
.card-blog.type-row .date {
  bottom: 5px;
  left: 5px;
  font-size: 13px;
}
.card-blog.type-row .info {
  padding: 10px 10px 0 0;
}
.card-blog.type-row .info p {
  min-height: 50px;
}
.card-blog.type-row .c-footer {
  text-align: left;
}

.blogs-list-section {
  margin: 120px 0 80px 0;
}
.blogs-list-section .grid-layout {
  display: grid;
  grid-template-columns: calc(100% - 400px) 400px;
}
.blogs-list-section .grid-main {
  padding-left: 30px;
}
.blogs-list-section .grid-side .grid-inner {
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 30px;
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
}
.blogs-list-section .main-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 20px 0;
}
.blogs-list-section .side-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #242426;
}
.blogs-list-section .side-title .fi {
  font-size: 20px;
  position: relative;
  top: 5px;
  margin-left: 10px;
  color: #003393;
}
.blogs-list-section .side-links li a {
  display: block;
  padding: 5px 0;
}

.blog-details .main-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 20px 0;
}
.blog-details .status-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.blog-details .status-info li {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  color: #707072;
}
.blog-details .status-info li .fi {
  position: relative;
  top: 2px;
  margin-left: 5px;
  font-size: 18px;
  color: #94a3b8;
}
.blog-details .description {
  margin-top: 30px;
}
.blog-details .description p {
  font-weight: 400;
  color: #242426;
  line-height: 28px;
  text-align: justify;
}
.blog-details .description p a {
  color: #003393;
  margin: 0 5px;
  font-weight: 600;
}
.blog-details .description p img {
  width: 100%;
  border-radius: 10px;
}
.blog-details .description ul,
.blog-details .description ol {
  padding-right: 30px;
}
.blog-details .description ul li,
.blog-details .description ol li {
  margin: 10px 0;
  font-weight: 400;
  color: #242426;
  text-align: justify;
}
.blog-details .description ul {
  list-style: disc;
}
.blog-details .blog-image-content {
  margin: 20px 0;
}
.blog-details .blog-image-content img {
  width: 100%;
  border-radius: 10px;
}
.blog-details .mini-box {
  background-color: rgba(0, 51, 147, 0.1);
  padding: 20px;
  border-right: 5px solid #003393;
  margin: 20px 0;
  border-radius: 10px;
}
.blog-details .mini-box p {
  text-align: justify;
  font-weight: 400;
  color: #242426;
}
.blog-details .mini-box p:last-child {
  margin-bottom: 0;
}
.blog-details .mini-box p a {
  color: #003393;
  margin: 0 5px;
  font-weight: 600;
}

.articles-links {
  margin-top: 30px;
}
.articles-links li {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}
.articles-links li:last-child {
  border-bottom: 0;
}
.articles-links li a {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: flex-start;
}
.articles-links li .icon {
  width: 24px;
  height: 24px;
  color: #94a3b8;
  font-size: 18px;
}
.articles-links li .icon .fi {
  display: flex;
  position: relative;
  top: 2px;
}
.articles-links li .info h2 {
  font-size: 14px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.articles-links li .date {
  font-size: 13px;
  color: #707072;
}
.articles-links li .date .fi {
  margin-left: 5px;
  position: relative;
  top: 3px;
}
.articles-links li:hover .info h2 {
  color: #003393;
}

.side-links {
  margin-bottom: 30px;
}
.side-links li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #242426;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
}
.side-links li a::before {
  content: "";
  position: relative;
  right: -10px;
  width: 0;
  height: 3px;
  border-radius: 5px;
  display: inline-block;
  background-color: #ffc71c;
  transition: all 0.3s ease-in-out;
}
.side-links li a:hover {
  color: #003393;
}
.side-links li a:hover::before {
  width: 15px;
}

.tags-list {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.tags-list li {
  margin: 5px 0 5px 5px;
}
.tags-list li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 8rem;
  background-color: white;
  border: 1px solid #d9d9d9;
  color: #003393;
  transition: all 0.2s linear;
}
.tags-list li a:hover {
  background-color: #003393;
  color: white;
  border-color: #003393;
}

.articles-list .atricle-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.articles-list .atricle-title h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: #242426;
}
.articles-list .atricle-title .select-group {
  margin-bottom: 0;
}
.articles-list .cards-list .card-report {
  margin-bottom: 25px;
}

.share-content {
  background-color: #f4f4f5;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 25px 0;
}
.share-content h6 {
  margin-bottom: 0;
  color: #242426;
}

@media (max-width: 1280px) {
  .blogs-list-section .grid-layout {
    grid-template-columns: calc(100% - 320px) 320px;
  }
}
@media (max-width: 1024px) {
  .blogs-list-section .grid-layout {
    grid-template-columns: 100%;
  }
  .blogs-list-section .grid-main {
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .card-blog.type-row .card-inner {
    grid-template-columns: 235px auto;
  }
  .card-blog.type-row .info h3 {
    font-size: 14px;
  }
  .card-blog.type-row .info p {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .swiper-blog-home .swiper-button-next,
  .swiper-blog-home .swiper-button-prev {
    width: 34px;
    height: 34px;
  }
  .swiper-blog-home .swiper-button-next::after,
  .swiper-blog-home .swiper-button-prev::after {
    font-size: 18px;
  }
  .swiper-blog-home .swiper-button-next {
    left: -5px !important;
  }
  .swiper-blog-home .swiper-button-prev {
    right: -5px !important;
  }
  .card-blog {
    padding: 5px;
  }
  .card-blog .card-inner {
    padding: 5px 5px 10px 5px;
  }
  .card-blog .date {
    font-size: 11px;
    bottom: -10px;
  }
  .card-blog .info h3 {
    font-size: 13px;
  }
  .card-blog .info p {
    font-size: 12px;
    min-height: 36px;
    line-height: 18px;
  }
  .card-blog .c-footer span {
    font-size: 13px;
  }
  .articles-list .atricle-title {
    flex-direction: column;
  }
  .articles-list .atricle-title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .articles-list .atricle-title .sort {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .card-blog.type-row .card-inner {
    grid-template-columns: 100%;
  }
  .card-blog.type-row .date {
    position: absolute;
    left: 10px;
    bottom: -12px;
  }
  .card-blog.type-row .info {
    padding: 25px 10px 5px 5px;
  }
  .card-blog.type-row .info h3 {
    font-size: 14px;
  }
  .card-blog.type-row .info p {
    font-size: 13px;
  }
}
/*#endregion -------------- Blogs */
/*#region ----------------- Footer */
.footer {
  background-color: #f4f4f5;
  padding: 40px 0 0 0;
}
.footer .logo {
  padding-left: 20px;
}
.footer .logo a {
  display: inline-block;
  width: 180px;
}
.footer .logo a img {
  width: 100%;
}
.footer .logo p {
  margin: 15px 0;
  color: #707072;
  font-size: 14px;
  text-align: justify;
}
.footer .f-title {
  font-size: 18px;
  font-weight: 600;
  color: #242426;
  margin: 10px 0 20px 0;
}
.footer .links ul {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .links ul li {
  flex: 0 0 50%;
  width: 50%;
  margin: 10px 0;
}
.footer .links ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #242426;
}
.footer .links ul li a:hover {
  color: #003393;
}
.footer .certificate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .certificate li {
  flex: 0 0 50%;
  width: 50%;
}
.footer .certificate li a {
  display: inline-block;
  padding: 5px;
}
.footer .certificate li a img {
  width: 100%;
}
.footer .copyright {
  background-color: #003393;
  margin-top: 1rem;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copyright .text {
  font-size: 14px;
  font-weight: 400;
  color: white;
}
.footer .copyright .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .copyright .social-icons ul li {
  margin: 5px;
}
.footer .copyright .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #003393;
  background-color: #ffc71c;
}
.footer .copyright .social-icons ul li a .fi {
  display: flex;
  font-size: 22px;
}

@media (max-width: 768px) {
  .footer .links ul li {
    margin: 6px 0;
  }
  .footer .links ul li a {
    font-size: 14px;
  }
  .footer .certificate {
    margin-top: 20px;
  }
  .footer .certificate li {
    width: 80px;
    flex: 0 0 80px;
  }
}
@media (max-width: 640px) {
  .footer .copyright {
    flex-direction: column;
  }
  .footer .copyright .text {
    margin-top: 20px;
    text-align: center;
    line-height: 28px;
    order: 2;
  }
  .footer .copyright .social-icons {
    order: 1;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Projects */
.projects-section {
  margin: 150px 0 100px 0;
}
.projects-section .section-inner {
  width: 80%;
  margin: 4rem auto 0 auto;
}
.projects-section .filter-content {
  background-color: #f4f4f5;
  border-radius: 15px;
  padding: 20px;
}

.projects-list {
  margin: 2rem 0;
}
.projects-list .p-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid #d9d9d9;
}
.projects-list .p-title h3 {
  font-size: 16px;
  font-weight: 400;
  color: #242426;
  margin-bottom: 0;
}
.projects-list .p-title h3 strong {
  font-weight: 800;
}

.card-project {
  margin-bottom: 15px;
}
.card-project .card-inner {
  display: grid;
  grid-template-columns: 220px auto;
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
  padding: 8px;
  border-radius: 10px;
}
.card-project .thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 0;
}
.card-project .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-project .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
.card-project .info {
  padding: 10px 10px 0 0;
}
.card-project .info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 5px;
}
.card-project .info h3:hover a {
  color: #003393;
}
.card-project .info p {
  font-size: 13px;
  font-weight: 400;
  color: #707072;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-project .info ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-project .info ul li {
  background-color: #f4f4f5;
  border-radius: 10rem;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0 5px 5px;
}
.card-project .info ul li span {
  color: #707072;
  margin-left: 5px;
}
.card-project .info ul li.primary {
  background-color: rgba(0, 51, 147, 0.1);
  color: #003393;
}
.card-project .info ul li.primary span {
  color: #003393;
}
.card-project .info ul li.info {
  background-color: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
}
.card-project .info ul li.info span {
  color: #60a5fa;
}
.card-project .info ul li.success {
  background-color: rgba(0, 184, 84, 0.1);
  color: #00b854;
}
.card-project .info ul li.success span {
  color: #00b854;
}
.card-project .info ul li.danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.card-project .info ul li.danger span {
  color: #ef4444;
}
.card-project .btns-action {
  margin-top: 10px;
  text-align: left;
}
.card-project .btns-action .btn {
  padding: 0.5rem 1rem;
  font-size: 13px;
}

.card-project-request {
  margin-bottom: 15px;
}
.card-project-request .card-inner {
  border: 1px solid #d9d9d9;
  padding: 10px;
  border-radius: 10px;
}
.card-project-request .c-title .project-status {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}
.card-project-request .c-title .project-status.open {
  background-color: #00b854;
}
.card-project-request .c-title .project-status.close {
  background-color: #ddd;
  color: #707072;
}
.card-project-request .c-title .project-status.reject {
  background-color: #ef4444;
  color: white;
}
.card-project-request .c-title .project-status.complete {
  background-color: #60a5fa;
  color: white;
}
.card-project-request .c-title .project-status.working {
  background-color: #fbbf24;
  color: white;
}
.card-project-request .c-title .employer {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-project-request .c-title .employer h3 {
  font-size: 14px;
  font-weight: 400;
  color: #707072;
  margin-bottom: 0;
  white-space: nowrap;
  margin-left: 10px;
}
.card-project-request .c-title .employer .company {
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
}
.card-project-request .c-title .employer .company .thumb {
  margin: 0 5px;
}
.card-project-request .c-title .employer .company .thumb img {
  width: 100%;
  border-radius: 50%;
}
.card-project-request .c-title .employer .company h4 {
  font-size: 13px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 0;
}
.card-project-request .c-title h2 {
  font-size: 16px;
  font-weight: 600;
}
.card-project-request .list-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-project-request .list-info li {
  flex: 0 0 50%;
  widows: 50%;
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
}
.card-project-request .list-info li .title {
  color: #707072;
}
.card-project-request .list-info li .desc {
  color: #242426;
}
.card-project-request .c-footer {
  text-align: left;
  border-top: 1px solid #d9d9d9;
  padding-top: 10px;
  margin-top: 10px;
}
.card-project-request .c-footer .btn {
  padding: 0.6rem 1rem;
  font-size: 14px;
}

@media (max-width: 1280px) {
  .projects-section .section-inner {
    width: 100%;
    margin-top: 3rem;
  }
}
@media (max-width: 1024px) {
  .projects-section {
    margin-top: 130px;
  }
  .projects-section .filter-content {
    padding: 15px;
  }
  .card-project .card-inner {
    grid-template-columns: 180px auto;
  }
  .card-project .thumb {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .projects-section {
    margin-top: 110px;
  }
  .projects-section .section-inner {
    width: 100%;
  }
  .projects-section .filter-content {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .projects-section {
    margin-top: 100px;
  }
  .projects-section .section-inner {
    margin-top: 2rem;
  }
  .projects-section .filter-content {
    padding: 15px 5px 10px 5px;
  }
  .projects-section .filter-content .btns-action .btn {
    width: 100%;
  }
  .projects-list .p-title h3 {
    font-size: 14px;
  }
  .card-project .card-inner {
    grid-template-columns: 100%;
  }
  .card-project .thumb {
    height: 320px;
  }
  .card-project-request .c-title .project-status {
    font-size: 12px;
  }
  .card-project-request .c-title h2 {
    font-size: 14px;
  }
  .card-project-request .c-title .employer h3 {
    font-size: 13px;
  }
  .card-project-request .c-title .employer .company {
    grid-template-columns: 42px auto;
  }
  .card-project-request .list-info li {
    flex: 1 0 100%;
    width: 100%;
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .projects-list .p-title .sort {
    flex: 1 0 100%;
    width: 100%;
  }
  .projects-list .p-title h3 {
    margin-bottom: 20px;
  }
  .projects-list .p-title .select-group label {
    display: none;
  }
}
/*#endregion -------------- Projects */
/*#region ----------------- Pagination */
.mypagination {
  padding: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 0 0;
  background-color: #f4f4f5;
  border-radius: 10px;
}
.mypagination .pagination-info {
  display: flex;
  align-items: center;
}
.mypagination .pagination-info span {
  padding: 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #242426;
}
.mypagination .pagination-info h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #707072;
}
.mypagination .pagination-info .curent-page-number {
  font-size: 16px;
  font-weight: 800;
  margin-right: 5px;
  color: #242426;
}
.mypagination .pagination-input {
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #707072;
  margin: 0 10px;
  background-color: white;
}
.mypagination .pagination-input:hover, .mypagination .pagination-input:focus {
  border-color: #003393;
}
.mypagination .btn-pagination {
  background-color: #003393;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  position: relative;
  min-width: 125px;
  display: inline-block;
}
.mypagination .btn-pagination.prev {
  padding: 10px 40px 10px 15px;
}
.mypagination .btn-pagination.prev .fi {
  right: 12px;
  top: 11px;
}
.mypagination .btn-pagination.next {
  padding: 10px 15px 10px 40px;
}
.mypagination .btn-pagination.next .fi {
  left: 12px;
  top: 11px;
}
.mypagination .btn-pagination .fi {
  font-size: 20px;
  line-height: 0;
  position: absolute;
}
.mypagination .btn-pagination:hover {
  background-color: #002365;
  color: #fff;
}
.mypagination .btn-pagination.disabled {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 575px) {
  .mypagination .pagination-prev,
  .mypagination .pagination-next {
    text-align: center;
    display: flex;
  }
  .mypagination .pagination-prev span,
  .mypagination .pagination-next span {
    display: none;
  }
  .mypagination .btn-pagination {
    width: 40px;
    height: 40px;
    min-width: unset !important;
    padding: 4px !important;
  }
  .mypagination .btn-pagination .fi {
    position: unset;
    right: unset;
    top: unset;
    left: unset;
  }
  .mypagination .btn-pagination.prev {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mypagination .btn-pagination.next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mypagination .pagination-info h6 {
    font-size: 12px;
  }
  .mypagination .pagination-info .curent-page-number {
    font-size: 14px;
  }
  .mypagination .pagination-input {
    width: 45px;
  }
}
/*#endregion -------------- Pagination */
/*#region ----------------- Project Details */
.project-details {
  margin: 120px 0 80px 0;
}
.project-details .grid-layout {
  display: grid;
  grid-template-columns: calc(100% - 400px) 400px;
}
.project-details .grid-main {
  padding-left: 20px;
}
.project-details .grid-side .inner {
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
  border-radius: 10px;
  padding: 15px;
  position: sticky;
  top: 100px;
}
.project-details .text-content {
  margin: 30px 0;
}
.project-details .text-content .project-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.project-details .text-content .project-status .status {
  font-size: 13px;
  font-weight: 600;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}
.project-details .text-content .project-status .status.open {
  background-color: #00b854;
}
.project-details .text-content .project-status .btn {
  padding: 0.6rem 3rem 0.6rem 1rem;
  font-size: 14px;
}
.project-details .text-content .project-status .btn .fi {
  top: 11px;
  font-size: 20px;
}
.project-details .text-content .project-name {
  font-size: 18px;
  font-weight: 600;
}
.project-details .employer {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.project-details .employer h2 {
  font-size: 14px;
  font-weight: 400;
  color: #707072;
  margin-bottom: 0;
  white-space: nowrap;
  margin-left: 10px;
}
.project-details .employer .company {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
}
.project-details .employer .company .thumb {
  margin: 0 5px;
}
.project-details .employer .company .thumb img {
  width: 100%;
  border-radius: 50%;
}
.project-details .employer .company h3 {
  font-size: 14px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 0;
}
.project-details .project-description p {
  font-size: 14px;
  color: #242426;
}
.project-details .list-info li {
  margin: 16px 0;
  font-size: 14px;
  font-weight: 500;
}
.project-details .list-info li .title {
  color: #707072;
}
.project-details .list-info li .desc {
  color: #242426;
}
.project-details .list-info li .desc.success {
  background-color: rgba(0, 184, 84, 0.1);
  color: #00b854;
  padding: 4px 10px;
  border-radius: 5rem;
}
.project-details .list-info li .desc.danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 5rem;
}
.project-details .list-info li .desc.info {
  background-color: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  padding: 4px 10px;
  border-radius: 5rem;
}
.project-details .list-info li .desc.primary {
  background-color: rgba(0, 51, 147, 0.1);
  color: #003393;
  padding: 4px 10px;
  border-radius: 5rem;
}
.project-details .tags {
  margin-top: 20px;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 20px;
}
.project-details .tags li {
  font-size: 14px;
  font-weight: 600;
  background-color: #f4f4f5;
  padding: 5px 10px;
  margin: 5px 0 5px 5px;
  border-radius: 10rem;
  color: #707072;
}
.project-details .tags li a {
  display: block;
}
.project-details .tags li:hover {
  background-color: #003393;
  color: white;
}
.project-details .side-title {
  font-size: 18px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.project-details .side-title .fi {
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-left: 10px;
  color: #707072;
}
.project-details .apply-project .btn {
  width: 100%;
}

.swiper-projet-details .swiper-slide .thumb {
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 0;
}
.swiper-projet-details .swiper-slide .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.swiper-projet-details .swiper-slide .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}
.swiper-projet-details .swiper-button-next,
.swiper-projet-details .swiper-button-prev {
  width: 34px;
  height: 34px;
  background-color: white;
  border-radius: 50%;
}
.swiper-projet-details .swiper-button-next::after,
.swiper-projet-details .swiper-button-prev::after {
  font-size: 18px;
  color: #707072;
}
.swiper-projet-details .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

@media (max-width: 1280px) {
  .project-details .grid-layout {
    grid-template-columns: calc(100% - 300px) 300px;
  }
  .swiper-projet-details .swiper-slide .thumb {
    height: 380px;
  }
}
@media (max-width: 1024px) {
  .project-details {
    margin-top: 100px;
  }
  .project-details .grid-layout {
    grid-template-columns: 100%;
  }
  .project-details .grid-main {
    padding-left: 0;
  }
  .project-details .grid-side {
    margin-top: 20px;
  }
  .project-details .side-title {
    font-size: 16px;
  }
  .project-details .side-title .fi {
    font-size: 18px;
  }
  .project-details .text-content {
    margin: 20px 0;
  }
  .project-details .text-content .project-name {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .swiper-projet-details .swiper-slide .thumb {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .swiper-projet-details .swiper-slide .thumb {
    height: 250px;
  }
}
/*#endregion -------------- Project Details */
/*#region ----------------- Company */
/*#endregion -------------- Company */
/*#region ----------------- Tabs */
.nav-tabs {
  border-bottom: 1px solid #d9d9d9;
}
.nav-tabs .nav-link {
  padding: 0.6rem 1.2rem;
  font-size: 14px;
  font-weight: 600;
  color: #707072;
  position: relative;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.nav-tabs .nav-link.active {
  border-color: #d9d9d9;
  background-color: white;
  color: #242426;
  border-bottom-color: #003393;
}
.nav-tabs .nav-link:hover {
  color: #242426;
}
.nav-tabs .nav-link .badge {
  color: #94a3b8;
  border-radius: 5rem;
}
.nav-tabs .nav-link .badge.bg-danger {
  background-color: #ef4444;
  color: white;
  padding: 2px 10px;
}
.nav-tabs .nav-link .badge.bg-primary {
  background-color: #003393;
  color: white;
  padding: 2px 10px;
}
.nav-tabs .nav-link .badge.bg-info {
  background-color: #60a5fa;
  color: white;
  padding: 2px 10px;
}

.tab-content {
  margin-top: 2rem;
}
.tab-content.type-border {
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding-top: 2rem;
  margin-top: 0;
}

@media (max-width: 768px) {
  .nav-tabs .nav-link {
    height: auto;
    flex-grow: 1;
    padding: 0.7rem;
    font-size: 14px;
  }
  .nav-tabs .nav-link .icon {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .nav-tabs .nav-link {
    padding: 0.7rem 0.5rem 0.5rem 0.7rem;
    font-size: 13px;
  }
  .nav-tabs .nav-link .icon {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
/*#endregion -------------- Tabs */
/*#region ----------------- Comments */
.user-comments .comment-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.user-comments .comment-title h2 {
  font-size: 22px;
  margin-bottom: 0;
}
.user-comments .comment-item {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.user-comments .comment-item:last-child {
  margin-bottom: 0;
}
.user-comments .comment-item .name {
  font-size: 16px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 10px;
}
.user-comments .comment-item .user-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.user-comments .comment-item .user-rating .star {
  font-size: 14px;
  font-weight: 600;
  color: #242426;
  margin-left: 20px;
}
.user-comments .comment-item .user-rating .star .fi {
  color: #fbbf24;
  font-size: 18px;
  position: relative;
  top: 4px;
}
.user-comments .comment-item .user-rating .date {
  font-size: 13px;
  color: #707072;
}
.user-comments .comment-item .text {
  margin-top: 10px;
}
.user-comments .comment-item .reply-content {
  background-color: #f4f4f5;
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
}
.user-comments .btns-action {
  gap: 5px;
  margin-top: 10px;
}
.user-comments .btns-action .btn {
  padding: 0.5rem 1rem;
  font-size: 13px;
  border-radius: 10rem;
}
.user-comments .btns-action .btn.icon-right {
  padding-right: 2.5rem;
}
.user-comments .btns-action .btn .fi {
  font-size: 16px;
  top: 9px;
  right: 14px;
}

@media (max-width: 1024px) {
  .user-comments-carousel::before, .user-comments-carousel::after {
    width: 90px;
  }
  .card-comment .card-inner {
    padding: 30px;
  }
  .card-comment .thumb {
    width: 90px;
  }
  .card-comment .info h3 {
    font-size: 14px;
    margin-top: 0.8rem;
  }
}
@media (max-width: 768px) {
  .user-comments-carousel::before, .user-comments-carousel::after {
    display: none;
  }
  .user-comments-carousel .section-inner {
    padding: 0 2rem;
  }
  .card-comment .card-inner {
    padding: 25px;
  }
  .card-comment .thumb {
    width: 80px;
  }
}
@media (max-width: 640px) {
  .user-comments .comment-title {
    flex-direction: column;
  }
  .user-comments .comment-title h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Collapse */
.btn-collapse {
  display: flex;
  align-items: center;
  background-color: transparent;
  color: #242426;
  border: 1px solid #d9d9d9;
  padding: 10px;
  cursor: pointer;
  position: relative;
}
.btn-collapse .icon {
  width: 24px;
  height: 24px;
  font-size: 20px;
  margin-left: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-collapse .icon:before {
  content: "\f4ee";
  font-family: uicons-regular-straight;
  color: #94a3b8;
}
.btn-collapse .name {
  font-size: 14px;
  font-weight: 600;
  color: #242426;
}
.btn-collapse.collapsed .icon {
  transform: rotate(180deg);
}
.btn-collapse.collapsed .icon::before {
  content: "\f627";
}
.btn-collapse.type-simple {
  border: none;
}

.card-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.card-collapse.show {
  max-height: 500px;
}

/*#endregion -------------- Collapse */
/*#region ----------------- User Profile */
.user-profile-section {
  margin: 120px 0 80px 0;
}
.user-profile-section .grid-layout {
  display: grid;
  grid-template-columns: 350px calc(100% - 350px);
}
.user-profile-section .grid-side .inner {
  position: sticky;
  top: 80px;
  background-color: white;
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
  border-radius: 10px;
}
.user-profile-section .grid-main {
  padding-right: 30px;
}
.user-profile-section .grid-main .inner {
  margin-top: 20px;
}
.user-profile-section .user-info {
  padding: 20px 15px 15px 15px;
}
.user-profile-section .user-info .thumb {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #003393;
}
.user-profile-section .user-info .thumb img {
  width: 100%;
  height: 100%;
}
.user-profile-section .user-info .title {
  margin: 10px 0;
  text-align: center;
}
.user-profile-section .user-info .title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #242426;
}
.user-profile-section .user-info .title .status {
  display: inline-block;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  border-radius: 5rem;
  margin-top: 8px;
}
.user-profile-section .user-info .title .status.active {
  background-color: #00b854;
}
.user-profile-section .user-info .title .status.not-active {
  background-color: #ef4444;
}
.user-profile-section .user-info .title .status.waiting {
  background-color: #fbbf24;
}
.user-profile-section .user-info .title .status.disabled {
  background-color: #cbd5e1;
  color: #707072;
}
.user-profile-section .user-menu {
  border-top: 1px solid #d9d9d9;
  padding: 15px 0;
}
.user-profile-section .user-menu .link-list li a {
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #707072;
  display: block;
  position: relative;
}
.user-profile-section .user-menu .link-list li a .fi {
  margin-left: 10px;
  font-size: 20px;
  color: #94a3b8;
  position: relative;
  top: 5px;
}
.user-profile-section .user-menu .link-list li a:hover {
  color: #003393;
}
.user-profile-section .user-menu .link-list li a:hover .fi {
  color: #003393;
}
.user-profile-section .user-menu .link-list li.active > a {
  border-right: 4px solid #003393;
  color: #003393;
  font-weight: 600;
}
.user-profile-section .user-menu .link-list li.active > a .fi {
  color: #003393;
}
.user-profile-section .user-menu .link-list li.active ul a {
  border-right: none;
}
.user-profile-section .user-menu .link-list li .badge-wallet {
  position: absolute;
  left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #003393;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: rgba(0, 51, 147, 0.1);
}
.user-profile-section .user-menu .link-list hr {
  margin: 0.6rem 0;
}
.user-profile-section .user-menu .btn-collapse .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  margin: 0;
}
.user-profile-section .user-menu .btn-collapse .icon::before {
  display: none;
}
.user-profile-section .user-menu .btn-collapse .icon .fi {
  position: unset;
  top: unset;
  margin: 0;
  display: flex;
}
.user-profile-section .main-title {
  background-color: white;
  box-shadow: rgba(135, 139, 142, 0.32) 0px 1px 3px 0px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  min-height: 74px;
}
.user-profile-section .main-title .title {
  display: grid;
  grid-template-columns: 48px auto;
}
.user-profile-section .main-title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #707072;
}
.user-profile-section .main-title .icon .fi {
  display: flex;
}
.user-profile-section .main-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: #242426;
  margin-bottom: 0;
}
.user-profile-section .btn-close-userMenu {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  color: #94a3b8;
  display: none;
}
.user-profile-section .btn-close-userMenu:hover {
  color: #242426;
}
.user-profile-section .btn-show-userMenu {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #003393;
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
}
.user-profile-section .btn-show-userMenu .fi {
  display: flex;
}
.user-profile-section .nav-tabs {
  overflow-x: auto;
}
.user-profile-section .nav-tabs .nav-link {
  white-space: nowrap;
}

.overlay-profile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1009;
}
.overlay-profile.active {
  display: block;
}

.cards-list-status .status {
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  margin: 8px 0;
}
.cards-list-status .status.bg-secondary {
  background-color: #ffc71c;
}
.cards-list-status .status.bg-primary {
  background-color: #003393;
}
.cards-list-status .status.bg-info {
  background-color: #60a5fa;
}
.cards-list-status .status.bg-success {
  background-color: #00b854;
}
.cards-list-status .status a {
  display: block;
  padding: 15px;
}
.cards-list-status .status .info {
  display: grid;
  grid-template-columns: 48px auto;
  align-items: center;
}
.cards-list-status .status .thumb {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  border: 2px solid white;
}
.cards-list-status .status .thumb .fi {
  display: flex;
}
.cards-list-status .status h2 {
  font-weight: 600;
  padding-right: 10px;
  margin-bottom: 0;
  color: white;
}
.cards-list-status .status .number {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-align: left;
}
.cards-list-status .status:hover.bg-secondary {
  background-color: #e8af00;
}
.cards-list-status .status:hover.bg-primary {
  background-color: #002160;
}
.cards-list-status .status:hover.bg-info {
  background-color: #2f89f8;
}

@media (max-width: 1024px) {
  .user-profile-section {
    margin-top: 100px;
  }
  .user-profile-section .grid-layout {
    grid-template-columns: 100%;
  }
  .user-profile-section .grid-main {
    padding-right: 0;
    margin-top: 20px;
  }
  .user-profile-section .grid-side .inner {
    position: unset;
  }
  .user-profile-section .user-menu {
    position: fixed;
    right: -300px;
    top: 0;
    z-index: 1010;
    background-color: white;
    width: 300px;
    height: 100vh;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding-bottom: 80px;
    padding-top: 50px;
    transition: all 0.3s ease-in-out;
  }
  .user-profile-section .user-menu.active {
    right: 0;
  }
  .user-profile-section .user-menu .link-list {
    height: 100%;
    overflow-y: auto;
  }
  .user-profile-section .user-info {
    padding: 10px 10px 20px 10px;
    position: relative;
  }
  .user-profile-section .user-info .thumb {
    width: 70px;
    height: 70px;
  }
  .user-profile-section .user-info .title h3 {
    font-size: 13px;
  }
  .user-profile-section .user-info .title .status {
    font-size: 12px;
  }
  .user-profile-section .progress-content .progress-text {
    font-size: 13px;
    font-weight: 600;
  }
  .user-profile-section .btn-close-userMenu {
    display: block;
  }
  .user-profile-section .btn-show-userMenu {
    display: flex;
  }
}
@media (max-width: 640px) {
  .user-profile-section .main-title .btn-actions .btn {
    width: 40px;
    height: 40px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .user-profile-section .main-title .btn-actions .btn span {
    display: none;
  }
  .user-profile-section .main-title .btn-actions .btn .fi {
    position: unset;
    top: unset;
    left: unset;
    top: unset;
    right: unset;
    display: flex;
  }
}
@media (max-width: 350px) {
  .user-profile-section .user-menu {
    width: 100%;
    right: -100%;
  }
}
/*#endregion -------------- User Profile */
/*#region ----------------- Progesss */
.progress-bar {
  background-color: #f4f4f5;
  width: 100%;
  height: 8px;
  border-radius: 5rem;
  overflow: hidden;
}
.progress-bar .progress {
  border-radius: 5rem;
  background-color: #003393;
  height: 8px;
}

.progress-content {
  display: grid;
  grid-template-columns: auto 50px;
  align-items: center;
  margin: 10px 0;
}
.progress-content .progress-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #707072;
}

/*#endregion -------------- Progesss */
/*#region ----------------- Calendar */
.calendar-container {
  width: 60%;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  background-color: #f4f4f5;
  padding: 5px;
  border-radius: 12px 12px 0 0;
}
.calendar-header .btn-month {
  background-color: #003393;
  color: #fff;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  font-size: 14px;
}
.calendar-header .btn-month:hover {
  background-color: #003393;
}
.calendar-header .btn-month .fi {
  position: absolute;
  top: 10px;
  font-size: 16px;
}
.calendar-header .btn-month.next {
  padding-left: 30px;
}
.calendar-header .btn-month.next .fi {
  left: 8px;
}
.calendar-header .btn-month.prev {
  padding-right: 30px;
}
.calendar-header .btn-month.prev .fi {
  right: 8px;
}

#current-month {
  font-size: 16px;
  font-weight: 600;
  color: #242426;
}

.calendar-weeks-name {
  background-color: #f4f4f5;
  padding: 10px 5px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 10px;
}
.calendar-weeks-name ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-weeks-name ul li {
  font-size: 14px;
}
.calendar-weeks-name ul li.week-1::before {
  content: "شنبه";
}
.calendar-weeks-name ul li.week-2::before {
  content: "یکشنبه";
}
.calendar-weeks-name ul li.week-3::before {
  content: "دوشنبه";
}
.calendar-weeks-name ul li.week-4::before {
  content: "سه‌شنبه";
}
.calendar-weeks-name ul li.week-5::before {
  content: "چهارشنبه";
}
.calendar-weeks-name ul li.week-6::before {
  content: "پنجشنبه";
}
.calendar-weeks-name ul li.week-7::before {
  content: "جمعه";
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-days .day {
  padding: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 5px;
}
.calendar-days .day:hover {
  background-color: #f0f0f0;
}
.calendar-days .day.selected {
  background-color: #00b854;
  color: #fff;
}

@media (max-width: 1280px) {
  .calendar-container {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .calendar-container {
    width: 100%;
  }
  .calendar-header .btn-month {
    font-size: 12px;
  }
  .calendar-header .btn-month .fi {
    top: 9px;
  }
  .calendar-header .btn-month.prev {
    padding-right: 25px;
  }
  .calendar-header .btn-month.next {
    padding-left: 25px;
  }
  .calendar-weeks-name ul li {
    font-size: 13px;
  }
  .calendar-weeks-name ul li.week-1::before {
    content: "ش";
  }
  .calendar-weeks-name ul li.week-2::before {
    content: "ی";
  }
  .calendar-weeks-name ul li.week-3::before {
    content: "د";
  }
  .calendar-weeks-name ul li.week-4::before {
    content: "س";
  }
  .calendar-weeks-name ul li.week-5::before {
    content: "چ";
  }
  .calendar-weeks-name ul li.week-6::before {
    content: "پ";
  }
  .calendar-weeks-name ul li.week-7::before {
    content: "ج";
  }
}
/*#endregion -------------- Calendar */
/*#region ----------------- Table */
.table-custom {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
}
.table-custom thead {
  border-bottom: 2px solid #242426;
}
.table-custom thead th {
  background-color: #f4f4f5;
  padding: 15px 12px;
  font-size: 14px;
}
.table-custom thead th:first-child {
  border-radius: 0 10px 0 0;
}
.table-custom thead th:last-child {
  border-radius: 10px 0 0 0;
}
.table-custom tbody {
  border-right: 1px solid #d9d9d9 !important;
}
.table-custom tbody td {
  padding: 15px 12px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #d9d9d9;
}
.table-custom tbody .success {
  background-color: #00b854;
  padding: 2px 5px;
  border-radius: 5rem;
  color: white;
  white-space: nowrap;
}
.table-custom tbody .error {
  background-color: #ef4444;
  padding: 2px 5px;
  border-radius: 5rem;
  color: white;
  white-space: nowrap;
}
.table-custom tbody .disabled {
  background-color: #cbd5e1;
  padding: 2px 5px;
  border-radius: 5rem;
  color: #707072;
  white-space: nowrap;
}
.table-custom tbody .warning {
  background-color: #fbbf24;
  padding: 2px 5px;
  border-radius: 5rem;
  color: #242426;
  white-space: nowrap;
}
.table-custom tbody .info {
  background-color: #60a5fa;
  padding: 2px 5px;
  border-radius: 5rem;
  color: white;
  white-space: nowrap;
}
.table-custom .btns-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.table-custom .btn-action {
  width: 38px;
  height: 38px;
  background-color: #f4f4f5;
  border-radius: 50%;
  font-size: 18px;
  color: #707072;
}
.table-custom .btn-action .fi {
  position: relative;
  top: 4px;
}
.table-custom .btn-action:hover {
  background-color: #94a3b8;
  color: white;
}
.table-custom .btn-action.color-1 {
  background-color: #003393;
  color: white;
}
.table-custom .btn-action.color-2 {
  background-color: #ffc71c;
}
.table-custom .btn-action.color-3 {
  background-color: #00b854;
  color: white;
}
.table-custom .btn-action.color-4 {
  background-color: #ef4444;
  color: white;
}

.table-responsive {
  overflow-x: auto;
}

/*#endregion -------------- Table */
/*#region ----------------- Master Page */
.masterpage-section {
  margin: 150px 0 100px 0;
}

/*#endregion -------------- Master Page */