:root {
  --body-font: "Inter", sans-serif;
  --heading-font: "Satoshi", sans-serif;
  --base-font: 16px;

  --white: #e0e0e0;
  --black: #191919;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --blue-50: #f0edff;
  --blue-100: #dbeafe;
  --blue-700: #3044c5;
  --blue-800: #3044c5;
  --blue-950: #172554;

  --blue: #009aff;
  --bg-secondary: #ff6a4d;
  --bg-tetradic: #e2ff4d;

  --yellow: #fcde2b;
  --error: #e61728;
  --success: #00d17e;

  --transition: all 0.2s ease-in-out;
}


/* button css */
.btn {
  appearance: button;
  backface-visibility: hidden;
  border-radius: 4px;
  border-width: 0;
  box-sizing: border-box;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 16px;
  min-height: 48px;
  line-height: 1;
  outline: none;
  overflow: hidden;
  padding: 0 32px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: var(--transition);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .btn {
    padding: 0 16px;
    font-size: 15px;
  }
}

.btn.btn-primary {
  background-color: #ff622d;
  color: white;
}

.btn.btn-outline {
  background-color: transparent;
  border: 1px solid var(--blue-700);
  color: var(--blue-700);
}

.btn.btn-outline:not(:disabled):hover {
  background-color: var(--blue-50);
}

.btn.btn-outline:disabled {
  background-color: transparent;
  border: 1px solid var(--blue-700);
  color: var(--blue-700);
}

.btn.btn-lg {
  min-height: 64px;
  font-size: 18px;
  padding: 0 32px;
}

.btn.btn-md {
  min-height: 40px;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 15px;
}

.btn.btn-sm {
  min-height: 32px;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 15px;
}

.btn:disabled {
  cursor: default;
}

.btn.btn-icon {
  gap: 4px;
}

.btn.btn-icon svg {
  width: 18px;
  height: 18px;
}


/* footer css */
.footer {
  background-color: #111827;
  color: var(--gray-700);
}

.footer.footer-website > div .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer.footer-website > div .social-links .footer-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer.footer-website > div .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer.footer-website > div .social-links .social-link li {
  margin-bottom: 0 !important;
}

.footer.footer-website > div .social-links .social-link li a {
  transition: var(--transition);
  color: var(--gray-700);
}

.footer.footer-website > div .social-links .social-link li a:hover {
  color: #ff622d;
}

.footer.footer-website > div .social-links .social-link li a svg {
  width: 24px;
  height: 24px;
}

.footer.footer-website > div .social-links .social-link li:first-child a svg {
  width: 22px;
  height: 22px;
}

.footer.footer-website > div .social-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer.footer-website > div .social-links .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer.footer-website .footer-top > div {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 96px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .footer.footer-website .footer-top > div {
    flex-direction: column;
    padding-block: 32px;
  }
}

.footer.footer-website .footer-top > div h2 {
  font-size: 56px;
  margin-bottom: 0;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .footer.footer-website .footer-top > div h2 {
    font-size: 28px;
  }
}

.footer.footer-website .footer-top > div .left {
  width: calc(100% - 40%);
}

@media (max-width: 767px) {
  .footer.footer-website .footer-top > div .left {
    width: 100%;
  }
}

.footer.footer-website .footer-top > div .right {
  width: 40%;
}

@media (max-width: 767px) {
  .footer.footer-website .footer-top > div .right {
    width: 100%;
  }
}

.footer.footer-website .footer-top > div .right p {
  text-align: left;
}

.cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer.footer-website .footer-top > div .right .cta {
  align-items: flex-start;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footer.footer-website .footer-top > div .right .cta a {
    max-width: 100%;
  }
}

.footer.footer-website .footer-middle > div {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 767px) {
  .footer.footer-website .footer-middle > div {
    padding: 32px 20px;
  }
}

@media (max-width: 1200px) {
  .footer.footer-website .footer-middle .block-wrap {
    padding-inline: 1rem;
  }
}

.footer.footer-website .footer-middle .block-wrap .social-link {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (max-width: 768px) {
  .footer.footer-website .footer-middle .block-wrap .social-link {
    gap: 32px;
  }
}

.footer.footer-website .footer-middle .block-wrap .social-link p {
  color: var(--white);
}

.footer.footer-website .footer-middle .block-wrap .social-link ul {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-direction: row;
}

.footer.footer-website .footer-middle .block-wrap .social-link .social-wrap {
  margin-top: auto;
  display: flex;
  gap: 16px;
  flex-direction: column;
  color: var(--gray-700);
  font-size: 15px;
}

@media (max-width: 768px) {
  .footer.footer-website .footer-middle .block-wrap .social-link .social-wrap {
    margin-top: 24px;
  }
}

.footer.footer-website .footer-middle .block-wrap .social-link .copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer.footer-website .footer-middle .block-wrap .social-link .copyright p {
  display: flex;
  align-items: center;
}

.footer.footer-website .footer-middle .block-wrap .social-link .copyright p span {
  margin: 0 3px;
}

.footer.footer-website .footer-middle .block-wrap .social-link .copyright p span svg path {
  fill: #e03131;
}

@media (max-width: 768px) {
  .footer.footer-website .footer-middle .block-wrap .social-link .copyright {
    margin-bottom: 24px;
  }
}

.footer.footer-website .footer-middle .block-wrap .other-link {
  gap: 48px 24px;
}

.footer.footer-website .footer-middle .block-wrap .other-link h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer.footer-website .footer-middle .block-wrap .other-link ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer.footer-website .footer-middle .block-wrap .other-link ul li a {
  color: white;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer.footer-website .footer-middle .block-wrap .other-link ul li a:hover {
  color: #ff622d;
}

.footer.footer-website .footer-middle .block-wrap .other-link ul li a .new-label {
  margin-left: 0.5rem;
  background: var(--blue-700);
  border-radius: 0.25rem;
  padding: 0.2rem 0.5rem;
  font-weight: 500;
  font-size: 0.55rem;
  color: var(--white);
  text-transform: uppercase;
  height: 16px;
  display: flex;
  align-items: center;
}

.footer.footer-website .footer-middle .copyright-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .footer.footer-website .footer-middle .copyright-wrap {
    flex-direction: column-reverse;
    min-height: 24px;
    padding-block: 16px;
    gap: 12px;
    align-items: flex-start;
  }
}

.footer.footer-website .footer-middle .copyright-wrap ul {
  display: flex;
  gap: 16px;
}

.footer.footer-website .footer-middle .copyright-wrap ul li a {
  color: var(--gray-700);
}

.footer.footer-website .footer-middle .copyright-wrap ul li a:hover,
.footer.footer-website .footer-middle .copyright-wrap ul li a:focus {
  color: var(--blue-700);
}

.footer.footer-website .footer-middle .social-links li:last-child a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
}

.footer.footer-website .footer-middle .social-links li:last-child a:hover,
.footer.footer-website .footer-middle .social-links li:last-child a:focus {
  color: #ff622d;
}


/* grid css */
.grid-50 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-50 {
    flex-direction: column;
  }
}

.grid-50 > div {
  width: calc((100% - 24px) / 2);
}

@media (max-width: 992px) {
  .grid-50 > div {
    width: 100%;
  }
}

.grid-33 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-33 {
    flex-direction: column;
  }
}

.grid-33 > div {
  width: calc((100% - 48px) / 3);
}

@media (max-width: 992px) {
  .grid-33 > div {
    width: 100%;
  }
}

.grid-25 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-25 {
    flex-direction: column;
  }
}

.grid-25 > div {
  width: calc((100% - 72px) / 4);
}

@media (max-width: 992px) {
  .grid-25 > div {
    width: 100%;
  }
}

.grid-20 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-20 {
    flex-direction: column;
  }
}

.grid-20 > div {
  width: calc((100% - 96px) / 5);
}

@media (max-width: 992px) {
  .grid-20 > div {
    width: 100%;
  }
}

.grid-40-60 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-40-60 {
    flex-direction: column;
  }
}

.grid-40-60 > div:first-child {
  width: calc(40% - 12px);
}

.grid-40-60 > div:last-child {
  width: calc(60% - 12px);
}

@media (max-width: 992px) {
  .grid-40-60 > div:first-child,
  .grid-40-60 > div:last-child {
    width: 100%;
  }
}

.grid-60-40 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-60-40 {
    flex-direction: column;
  }
}

.grid-60-40 > div:first-child {
  width: calc(60% - 12px);
}

.grid-60-40 > div:last-child {
  width: calc(40% - 12px);
}

@media (max-width: 992px) {
  .grid-60-40 > div:first-child,
  .grid-60-40 > div:last-child {
    width: 100%;
  }
}

.grid-30-70 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-30-70 {
    flex-direction: column;
  }
}

.grid-30-70 > div:first-child {
  width: calc(30% - 12px);
}

.grid-30-70 > div:last-child {
  width: calc(70% - 12px);
}

@media (max-width: 992px) {
  .grid-30-70 > div:first-child,
  .grid-30-70 > div:last-child {
    width: 100%;
  }
}


/* header css */
.header {
  background: #111827;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header .navbar {
  max-width: 1248px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header .navbar ul {
  display: flex;
  align-items: center;
}

.header .navbar ul li {
  position: relative;
}

@media (max-width: 768px) {
  .header .navbar ul li:last-child {
    margin: 24px;
  }
}

.header .navbar ul li.btn-link {
  margin-left: 12px;
}

.header .navbar ul li a:not(.btn) {
  color: var(--white);
  padding: 0 16px;
  transition: var(--transition);
  font-weight: 500;
}

.header .navbar ul li a:not(.btn):hover,
.header .navbar ul li a:not(.btn):focus {
  color: #ff622d;
}

.header .navbar .logo {
  max-width: 164px;
  width: 100%;
}

.header .nav-rigth {
  position: relative;
  margin-left: 8px;
}

@media (max-width: 992px) {
  .header .nav-rigth {
    display: none;
  }
}

.header .nav-rigth .nav-item {
  width: 32px;
}

.header .nav-rigth .nav-item .profile_pic {
  cursor: pointer;
}

.header .nav-rigth .nav-item .profile_pic img {
  border-radius: 32px;
  width: 32px;
  height: 32px;
}

.header .nav-rigth .nav-item .profile_pic_menu {
  background: var(--white);
  width: 200px;
  position: absolute;
  right: 0;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 36%);
  border-radius: 8px;
  top: 54px;
}

.header .nav-rigth .nav-item .profile_pic_menu button {
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
}

.header .nav-rigth .nav-item .profile_pic_menu button:hover {
  background-color: var(--blue-700);
  color: var(--white);
}

@media (max-width: 1024px) {
  .header form {
    display: none;
  }
}

#navcheck,
.nav-btn,
.backdrop {
  display: none;
}

.nav-btn {
  position: fixed;
  right: 24px;
  top: 26px;
  z-index: 9999;
}

.nav-btn label span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1),
    background-color 0.3s cubic-bezier(0.77, 0.2, 0.05, 1),
    opacity 0.3s ease-in-out;
  position: relative;
}

.nav-btn label span:not(:last-child) {
  margin-bottom: 7px;
}

.instruction {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 72px);
}

@media (max-width: 992px) {
  .instruction {
    display: none;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-btn {
    display: block;
  }

  .navbar ul li a {
    width: 100%;
    display: block;
    padding: 16px;
  }

  #navcheck {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 72px;
    height: 72px;
    z-index: 99999;
    cursor: pointer;
    margin: 0;
    display: block;
  }

  input#navcheck:checked ~ .nav-btn label span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
    top: 0;
    left: 0;
  }

  input#navcheck:checked ~ .nav-btn label span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
    top: 0;
    left: 0;
  }

  input#navcheck:checked ~ .nav-btn label span:nth-child(2) {
    opacity: 0;
  }

  input#navcheck:checked ~ .header .navbar .nav-menu {
    display: block !important;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    background-color: var(--white);
    border-top: 1px solid var(--gray-300);
  }

  input#navcheck:checked ~ .backdrop {
    position: fixed;
    display: block;
    background-color: rgba(0, 0, 0, 0.36);
    width: 100%;
    height: 100vh;
    z-index: 9;
    top: 0;
    left: 0;
  }

  .header .navbar ul li a:not(.btn) {
    padding: 16px 24px;
  }
}


/* typography css */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--gray-900);
  line-height: 1.25;
}

h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--white);
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 800;
}

@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  scroll-padding-top: 4.6rem;
  font-family: var(--body-font);
  background-color: var(--white);
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  color: var(--white);
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

input[type="search"]::-webkit-search-decoration:hover,
input[type="search"]::-webkit-search-cancel-button:hover {
  cursor: pointer;
}

.bg-gray {
  background-color: #111827;
}

section.no-padding {
  padding-block: 0;
}

section > div {
  width: 100%;
  max-width: 1248px;
  padding-inline: 24px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  section > div {
    padding-inline: 16px;
  }
}

.text-center {
  text-align: center;
}

.hero {
  background-image: url("data:image/svg+xml,%3Csvg ... %3E");
  background-repeat: no-repeat;
  background-size: contain;
  background: #111827;
}

.hero p {
  font-size: 16px;
  color: #d7cfcf;
}

.hero .hero-image img {
  object-fit: contain;
  border-radius: 12px;
  width: 100%;
}

.hero .text {
  gap: 24px;
}

.hero .text h1 a {
  color: var(--white);
}

.navbar-new {
  border-bottom: 1px solid var(--gray-200);
}

.nutshell .grid-50 {
  align-items: center;
}

.bg-primary {
  background-color: #0b192c;
  color: var(--white);
}

.bg-primary h2,
.bg-primary h3,
.bg-primary p {
  color: var(--white);
}

.bg-primary .icon {
  margin-bottom: 32px;
}

.bg-primary .btn-primary {
  background-color: var(--white);
  color: #1e3e62;
  border-color: #1e3e62;
}

.bg-primary .btn-primary:focus,
.bg-primary .btn-primary:hover {
  background-color: var(--blue-700);
  color: var(--white);
  border-color: #1e3e62;
  box-shadow: rgba(255,255,255,0.1) 0 0 0 1px inset,
              rgba(255,255,255,0.2) 0 6px 15px 0,
              rgba(0,0,0,0.1) 0 2px 2px 0,
              rgba(255,255,255,0.3) 0 0 0 4px;
}

.max-w-4xl {
  max-width: 56rem;
  width: 100%;
}

.align-center {
  align-items: center;
}

.has-space:empty {
  display: none;
}

.w-fit {
  width: fit-content;
}

.custom-btn {
  display: flex;
  gap: 8px;
}

@media (max-width: 767px) {
  .custom-btn {
    flex-direction: column;
  }
}

.test {
  font-size: 16px;
}

.show-more {
  display: none;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 2s linear infinite;
  margin: auto;
}

.has-space table {
  margin-bottom: 48px;
  overflow: auto;
  box-shadow: rgba(9,30,66,.25) 0px 4px 8px -2px,
              rgba(9,30,66,.08) 0px 0px 0px 1px;
  border-radius: 12px;
  padding: 32px 24px;
  background-color: #0d121e;
  width: 100%;
  text-align: left;
  border: 0;
  border-collapse: collapse;
}

.has-space table thead {
  background-color: #212a3e;
  border: 1px solid #0d121e;
}

.has-space table thead th {
  font-weight: 600;
  text-transform: capitalize;
}

.has-space table th,
.has-space table td {
  padding: 16px 24px;
  color: var(--white);
}

.has-space table th:first-child,
.has-space table td:first-child {
  width: 20%;
}

.has-space h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  line-height: 1.45;
}

.has-space hr {
  margin: 24px 0;
  border-top: 1px solid var(--gray-300);
}

.has-space h2 {
  font-size: 24px;
  font-weight: 600;
}

.has-space h2:not(:first-child) {
  margin-top: 48px;
}

.has-space p {
  margin-bottom: 24px;
  color: var(--white);
}

.has-space ul,
.has-space ol {
  padding-left: 18px;
  margin-bottom: 24px;
  color: var(--white);
}

.has-space ul {
  list-style: disc;
}

.has-space a {
  color: #ff622d;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.py-96 {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .py-96 {
    padding: 36px 0;
  }
}

.bg-inherit {
  background: #111827;
}

.auther-detail {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
}

.auther-detail:hover span {
  color: #ff622d;
}

.auther-detail .img {
  margin-right: 12px;
}

.auther-detail .img img {
  border-radius: 40px;
  max-width: 40px;
}

.auther-detail .date p {
  font-size: 13px;
}

.auther-detail span {
  color: #b0b0b0;
  transition: all 0.2s ease-in-out;
}

.auther-detail a {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.auther-detail .description {
  color: var(--gray-100);
}

@media (min-width: 768px) {
  .auther-detail .description h2 {
    margin-top: 0;
  }
}

.auther-detail .description p {
  margin-bottom: 0;
}

.auther-detail .description a {
  text-decoration: none !important;
}

.author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author .author-image {
  margin-bottom: 20px;
}

.author .author-image .extra-large {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.author .about-author {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.author .about-author p {
  margin-block: 24px;
}

.author ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.author ul li {
  padding: 0 20px;
}

.author ul li a {
  display: block;
  transition: 0.2s ease;
}

.author ul li a svg {
  width: 30px;
  height: 30px;
  color: var(--gray-900);
}

.author ul li a svg path {
  transition: all 0.2s ease-in-out;
}

.author ul li a:hover path {
  fill: #ff622d;
}

.pagination {
  display: flex;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.pagination li {
  margin: 0 8px;
}

@media (max-width: 400px) {
  .pagination li {
    margin: 0 2px;
  }
}

.pagination li a {
  transition: 0.2s ease-in-out;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8c92ac;
  background-color: var(--white);
  border-radius: 4px;
}

.pagination li a.active {
  background: #FF622D;
  color: var(--white);
}

.pagination li a.prew.enable,
.pagination li a.next.enable {
  background: #f3f4f6;
  color: #FF622D;
}

.pagination li a.prew.enable svg,
.pagination li a.next.enable svg {
  stroke: #FF622D;
}

.pagination li a.prew.disabled,
.pagination li a.next.disabled {
  cursor: not-allowed;
  color: #8c92ac;
  pointer-events: none;
}

.pagination li a:not(.disabled):hover {
  background: #FF622D;
  border-radius: 4px;
  color: var(--white);
}

.pagination li a:not(.disabled):hover svg {
  stroke: var(--white);
}

.pagination li a:not(.disabled):hover a {
  color: var(--white);
}

.page_404 {
  margin: 40px auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gradient-heading {
  background: linear-gradient(to right, #ffffff, #7f90e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

.glow-button {
  background: linear-gradient(90deg, #4f46e5, #7928ca);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(79,70,229,0.5);
  z-index: 10;
}

.glow-button:hover {
  box-shadow: 0 0 25px rgba(79,70,229,0.8);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #7928ca, #4f46e5);
}

.contant_box_404 p {
  color: #000;
}

#TableOfContents ul li{
    margin-bottom: 12px;
}

#TableOfContents ul li a {
  color: #9ca3af;
  font-size: 0.938rem;
}

#TableOfContents ul li a:hover {
  color: #ff622d;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.share-buttons a {
  text-decoration: none;
  color: #333;
  background-color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease;
}

.share-buttons a:hover {
  background-color: #e0e0e0;
  transform: scale(1.1);
}

.toc {
  font-weight: 600;
}

@media (max-width: 768px) {
  .toc {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .toc-mobile-hide {
    display: none;
  }

  .share-cta-mobile {
    display: block;
    margin-top: 2rem;
  }

  .grid-30-70 {
    display: block;
  }
}

.py-bottom-96 {
  padding: 0 0 96px 0;
}

@media screen and (min-width: 950px) {
  .sticky-toc {
    position: sticky;
    top: 4.6rem;
    padding-bottom: 5.25rem;
  }

  .toc-scroll {
    padding-right: 2px;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
  }

  .toc-scroll::-webkit-scrollbar {
    width: 8px;
  }

  .toc-scroll::-webkit-scrollbar-track {
    background: #2c2c2c;
  }

  .toc-scroll::-webkit-scrollbar-thumb {
    background-color: #9f9f9f;
    border-radius: 10px;
    border: 1.5px solid #2c2c2c;
  }
}

.tags-wrap {
  max-width: 768px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .tags-wrap {
    padding: 0;
  }
}

.tags-wrap ul {
  justify-content: center;
  padding: 0;
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 24px 0 0;
}

@media (max-width: 767px) {
  .tags-wrap ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.tags-wrap ul li a {
  background-color: var(--white);
  min-height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 40px;
  padding: 7px 16px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.tags-wrap ul li a:hover {
  background-color: var(--gray-200);
}

.tags-wrap ul li.all-categore a {
  border: 1px solid var(--blue-700);
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--blue-700);
}

.tags-wrap ul li.all-categore a:hover {
  color: var(--white);
}

.card-new {
  background-color: #0d121e;
  position: relative;
  border: 1px solid var(--white);
  transition: all 0.2s ease-in-out;
}

.card-new:hover {
  border-color: #ff622d;
}

.card-new.padding {
  padding: 24px;
}

@media (max-width: 768px) {
  .card-new.padding {
    padding: 24px 16px;
  }
}

.card-new.padding-sm {
  padding: 5px;
}

.card-new.padding-lg {
  padding: 48px 32px;
}

.card-new.rounded {
  border-radius: 12px;
}

.card-new.bordered {
  border: 1px solid var(--gray-200);
}

.card-new.shadow {
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.card-new img {
  border-radius: 8px;
  aspect-ratio: 3 / 2;
}

.card-new h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.card-new .description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.card-new .description p {
  color: #b0b0b0;
  margin-bottom: 24px;
}

.bio {
  color: #b0b0b0;
  margin-top: auto;
  position: relative;
  z-index: 2;
  font-size: 15px;
}

.bio a {
  color: var(--gray-400);
}

.bio a:hover {
  color: #ff622d;
}

.blog-tag {
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag a {
  color: #ff622d;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid;
  padding: 0 8px;
  border-radius: 24px;
  transition: var(--transition);
}

.blog-tag a:hover {
  background-color: #ff622d;
  color: var(--white);
}

.blog-tag a:not(:first-child) {
  padding-left: 8px;
}
