/*-------------------------
    Variables
-------------------------*/
:root {
  --color-primary: #ec6a2e;
  --color-secondary: #000000;

  --color-white: #ffffff;
  --color-blue500: #f8f9fa;

  --color-body: #545454;
  --color-gray400: #686969;
  --color-link: #ec6a2e;
  --bg-orange-light: #fbefea;

  --font-header: "Montserrat", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-code: "Source Code Pro", monospace;

  --transition: all 0.4s ease-in-out;
  --radius: 10px;

  --font-body-1: 22px;
  --font-body-2: 20px;
  --font-body-3: 18px;
  --font-body-4: 16px;
  --font-body-5: 14px;

  --h1: 3rem; /* 48px */
  --h2: 2.5rem; /* 40px */
  --h3: 2rem; /* 32px */
  --h4: 1.625rem; /* 26px */
  --h5: 1.375rem; /* 22px */
  --h6: 1.125rem; /* 18px */
}

/*-------------------------
    Base
-------------------------*/
body {
  background-color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--font-body-3);
  color: var(--color-body);
  font-weight: 400;
  font-style: normal;
}

/*-------------------------
    Typography
-------------------------*/
.text-primary {
  color: var(--color-primary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-secondary);
  font-family: var(--font-header);
}

h1,
h2,
h3 {
  font-weight: 800;
}
h4,
h5,
h6 {
  font-weight: 600;
}

/*-------------------------
    Buttons
-------------------------*/
.btn {
  border-radius: var(--radius);
  border: 0;
  padding: 10px 16px;
  font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-body-4);
}

.btn-primary:hover {
  background-color: #d85a1f;
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.link-btn {
  border-bottom: 1px solid;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  font-size: var(--font-body-3);
  font-weight: 500;
  padding: 0;
}

/*-------------------------
    Utilities
-------------------------*/
.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-body {
  color: var(--color-body);
}

.text-dark {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-light {
  background-color: var(--color-blue500);
}

.bg-orange-light {
  background-color: var(--bg-orange-light);
}

.bg-white {
  background-color: var(--color-white);
}

a,
a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: var(--color-link);
  word-wrap: break-word;
}

section {
  padding: 60px 0;
}

.hero-section.no-banner {
  padding: 30px 0 64px;
  background: var(--bg-brown-light);
}

.hero-section .tag {
  font-size: var(--font-body-5);
  color: var(--color-secondary);
  border: 1px solid #e2e3e4;
  padding: 6px 8px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.hero-section .tag img {
  max-width: 62px;
}
.hero-section .hero-img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

/** Top Navigation Starts **/

.navbar-toggler:focus {
  box-shadow: none;
}

.logo-main {
  width: 260px;
  max-width: 100%;
}

.navbar-nav .nav-link {
  color: var(--color-secondary);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--color-link);
}

.navbar-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  background-color: #ffffff;
}

nav .nav-item {
  padding: 0 12px;
}

nav .nav-item a {
  font-size: var(--font-body-4);
}

nav .nav-link.active,
nav .show > .nav-link,
.navbar-nav .nav-link:hover {
  color: #ed6a2e !important;
}

nav .nav-item .nav-link.join-now {
  color: var(--color-white);
  padding: 12px 24px;
  background-color: var(--color-primary);
  font-weight: 600;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
  color: #ed6a2e;
  background-color: #f9f9f9;
}

.dropdown-item {
  font-size: 16px;
  padding: 0.5rem 0.8rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    padding: 0;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
    border: 0;
    box-shadow: 0px 19px 55px 4px rgb(50 50 93 / 15%);
    -webkit-box-shadow: 0px 19px 55px 4px rgb(50 50 93 / 15%);
    border-radius: 4px;
  }
}
/** Top Navigation Ends **/

.hero-section {
  position: relative;
  padding: 130px 0 64px;
  background: url("/custom/images/hero-gradient.svg") no-repeat;
  background-size: cover;
  background-position: right -200px center;
}

.hero-section h1 {
  font-size: var(--h1);
  font-weight: 600;
}

.hero-section h1 span {
  font-weight: 900;
}

.hero-section p {
  font-size: 20px;
  font-weight: 500;
}

/* Section Header Layout */

.section-header {
  margin: 0 auto 36px;
}
.section-badge {
  display: inline-block;
  font-size: var(--font-body-5);
  font-weight: 500;
  color: var(--color-primary);
  background-color: #fdf0ea;
  border: 1px solid var(--color-primary);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-header);
  font-size: var(--h2);
  color: var(--color-secondary);
  margin-bottom: 10px;
}

/* Title */

.trusted-title {
  font-weight: 600;
  font-size: 24px;
}

/* Marquee */

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: scrollLogos 60s linear infinite;
}

/* Logos */

.logo-track img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: none;
}

/* animation */

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pause on hover */

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* ---------- Tabs Wrapper ---------- */

.feature-tabs {
  border-bottom: 0;
  background-color: var(--color-blue500);
  padding: 8px;
}

/* ---------- Tab Button ---------- */

.feature-tab {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--color-gray400);
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ---------- Active Tab ---------- */

.feature-tab.active {
  background: linear-gradient(
    90deg,
    #f7f5f5 0%,
    #f7efec 50%,
    #f7e7e0 75%,
    #f6e7e0 100%
  );
  color: var(--color-secondary);
  font-weight: 700;
}

/* ---------- SVG icon ---------- */

.tab-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  transition: 0.3s;
}

/* icon color when active */

.feature-tab.active .tab-icon svg {
  color: var(--color-primary);
}

/* ---------- Card ---------- */

.feature-card {
  background: var(--color-white);
  border-radius: 0 0 16px 16px;
  padding: 24px;
}

/* ---------- Image ---------- */

.feature-img {
  max-width: 275px;
}

.step-card {
  background: var(--color-white);
  padding: 24px 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
}

.step-card {
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Step badge */
.step-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-body-5);
  font-weight: 600;
  padding: 3px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* Title */
.step-heading {
  font-size: var(--font-body-1);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta {
  background: linear-gradient(90deg, #fdf0ea 0%, #ec6a2e 100%);
  border-radius: 16px;
  padding: 60px;
}

.cta h2 {
  font-size: var(--h2);
}

.cta p {
  color: var(--color-secondary);
  font-size: var(--font-body-2);
  font-weight: 500;
  margin-bottom: 0;
}

.use-card {
  background: var(--color-blue500);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.use-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}

.use-content {
  padding: 20px;
}

.use-title {
  font-size: var(--font-body-1);
  font-weight: 700;
  margin-bottom: 10px;
}

.use-desc {
  font-size: var(--font-body-3);
  margin-bottom: 16px;
}

.use-card {
  transition: 0.25s ease;
}

.use-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.statistics.card-gradient {
  padding: 20px;
  background:
    url("/custom/images/stats-bg.svg") no-repeat,
    var(--color-blue500);
  background-position: left 120px bottom -20px;
}

.statistics .number {
  font-size: 50px;
  font-weight: 800;
  color: #d7602a;
  font-family: var(--font-header);
  margin-bottom: 8px;
}

.card-gradient.statistics .card-title {
  margin-bottom: 8px;
}

footer {
  padding: 60px 0 0;
  position: relative;
  background-color: var(--color-blue500);
}

footer .basic-info .logo {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
  display: block;
}

footer .social-links li {
  display: inline-block;
  margin: 0 8px;
}

footer .rounds-left {
  position: absolute;
  left: 0;
}

footer .rounds-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

footer .rounds-left img {
  width: 40%;
}

footer .basic-info {
  text-align: center;
}

footer .social-widget .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

footer .social-widget .social-links {
  position: relative;
  margin-bottom: 10px;
}

footer .social-widget .social-links li {
  position: relative;
  margin-right: 8px;
  margin-bottom: 10px;
  display: inline-block;
  background: #ed6a2e;
  border-radius: 50%;
}

footer .social-widget .social-links li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 14px;
  width: 25px;
  height: 25px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

footer .social-widget .social-links li a span {
  position: relative;
}

footer .main-links h3 {
  color: var(--color-secondary);
  font-size: var(--font-body-3);
  font-weight: 700;
  margin-bottom: 10px;
}

footer .main-links ul li {
  color: var(--color-body);
  margin-bottom: 4px;
}

footer .main-links ul li a {
  color: #4e4949;
  font-size: var(--font-body-4);
  font-weight: 400;
}

footer .main-links ul li a:hover,
footer .main-links ul li a.sub:hover,
footer .basic-info .links li a:hover {
  color: #ed6a2e;
}

footer .main-links ul li a.sub {
  color: #7e7e7e;
}

footer .copyright {
  font-size: var(--font-body-4);
  color: var(--color-secondary);
  padding: 10px 0;
  border-top: 1px solid #e2e3e4;
}

footer .copyright a {
  color: var(--color-link);
  font-size: var(--font-body-4);
  position: relative;
  margin: 0 10px;
}
footer .copyright a:not(:last-child):after {
  content: "";
  width: 2px;
  height: 14px;
  background-color: #a4a4a4;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 10px;
}

/* Article listing & detail pages use Urbanist font */

/* Hero section override for articles */
.articles-page .hero-section {
  position: relative;
  padding: 130px 0 64px;
  background: url("/custom/images/hero-gradient.svg") no-repeat;
  background-size: cover;
  background-position: right -200px center;
}

.articles-page .hero-section img.bg-gradient-img {
  position: absolute;
  top: -140px;
  z-index: -1;
  left: 140px;
}

.articles-page .hero-section.no-banner {
  padding: 36px 0;
}

.articles-page .hero-section h1 {
  font-weight: 600;
  margin-bottom: 12px;
}

.articles-page .hero-section h1 span {
  font-weight: 900;
}

.articles-page .hero-section p {
  font-weight: 500;
  font-size: 20px;
}

/* Search bar */
.articles-page .search-wrap {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.articles-page .search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #adb5bd;
}

.articles-page .search-input {
  padding: 12px 16px 12px 52px;
  border-radius: 8px;
  border: 1px solid #e2e3e4;
  background-color: #fff;
  font-size: 1rem;
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.03);
}

.articles-page .search-input::placeholder {
  color: #88898a;
  font-weight: 400;
}

.articles-page .search-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(236, 106, 46, 0.15);
  border-color: #ec6a2e;
}

/* Articles section */
.articles-page .articles {
  padding: 60px 0;
}

.articles-page .articles .section-title {
  font-weight: 800;
  margin-bottom: 28px;
}

.section-subtitle {
  font-size: var(--font-body-2);
  font-weight: 500;
}

/* Filter action */
.articles-page .filter-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.articles-page .filter-action select {
  border-radius: 8px;
  border: 1px solid #e2e3e4;
  padding: 8px 10px;
}

/* Article card */
.articles-page .article-box {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
}

.articles-page .articles .article-box {
  height: calc(100% - 24px);
}

.articles-page .article-box.detail {
  border: 1px solid #e2e3e4;
  border-radius: 16px;
  box-shadow: none;
  color: #333;
  height: auto;
}

.articles-page .article-box .a-body {
  padding: 20px;
}

.articles-page .article-box .a-body .date {
  font-size: 16px;
  color: var(--color-gray400);
  gap: 4px;
}

.articles-page .article-box .a-body .author {
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
}

.articles-page .article-box .a-body .author img {
  border-radius: 100%;
  width: 24px;
  height: 24px;
}

.articles-page .article-box .a-body .title h3 {
  font-size: var(--h5);
  margin-bottom: 10px;
}

.articles-page .article-box .a-footer {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #eef1f5;
}

.articles-page .article-box .a-footer .links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  flex-grow: 1;
}

.articles-page .article-box .a-footer > span {
  white-space: nowrap;
}

.articles-page .article-box .a-footer a {
  background-color: #fbefea;
  border-radius: 5px;
  padding: 3px 10px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
}

/* Article detail */
.articles-page .article-box.detail .a-body .title h1 {
  font-size: var(--h3);
  margin-bottom: 16px;
}

.articles-page .article-box.detail .a-body h6 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}

.articles-page .article-box ul,
.articles-page .article-box li {
  list-style-type: inherit;
}

.articles-page .article-box ul {
  padding-left: inherit;
}

/* Related articles */
.articles-page .related-articles a {
  border: 1px solid #e2e3e4;
  border-radius: 16px;
  padding: 20px;
  display: block;
  height: calc(100% - 16px);
  margin-bottom: 16px;
  text-decoration: none;
}

.articles-page .related-articles a p {
  margin-bottom: 0;
  color: #333;
}

.articles-page .related-articles a h6 {
  font-size: 22px;
  font-weight: 700;
  color: #ec6a2e;
  margin-bottom: 10px;
}

/* CTA in articles */
.articles-page .articles .cta {
  background: linear-gradient(90deg, #fdf0ea 0%, #ec6a2e 100%);
  border-radius: 16px;
  padding: 30px;
}

.articles-page .articles .cta p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.articles-page .articles .cta a.btn {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  border-color: var(--color-secondary);
}

/* Sidebar boxes */
.articles-page .r-box {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.articles-page .r-box h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.articles-page .r-box.da-txt {
  background-color: #f6f9fc;
}

.articles-page .r-box.trunc-txt {
  background-color: #fbf5f2;
}

.articles-page .r-box.noc-txt {
  background-color: #f2f3f7;
}

.articles-page .r-box.da-txt h6,
.articles-page .r-box.da-txt p,
.articles-page .r-box.da-txt a {
  color: #004792;
}

.articles-page .r-box.trunc-txt h6,
.articles-page .r-box.trunc-txt p,
.articles-page .r-box.trunc-txt a {
  color: #d26228;
}

.articles-page .r-box.noc-txt h6,
.articles-page .r-box.noc-txt p,
.articles-page .r-box.noc-txt a {
  color: #333952;
}

.articles-page .r-box .btn-link {
  text-decoration: none;
  font-size: 16px;
  position: relative;
  font-weight: 500;
}

.articles-page .r-box .btn-link::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.articles-page .r-box.da-txt .btn-link::after {
  background-color: #004792;
}

.articles-page .r-box.trunc-txt .btn-link::after {
  background-color: #d26228;
}

.articles-page .r-box.noc-txt .btn-link::after {
  background-color: #333952;
}

.articles-page .r-box .a-links li span {
  display: block;
  font-weight: 500;
}

.articles-page .r-box .a-links li {
  margin-bottom: 16px;
  font-size: 16px;
}

.articles-page .r-box .a-links.only li:not(:last-child) {
  margin-bottom: 4px;
}

.articles-page .r-box .a-links li:last-child {
  margin-bottom: 0;
}

/* Back button */
.articles-page .back-btn {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* Code terminal blocks */
.articles-page .cmd-terminal {
  background: linear-gradient(to bottom, #ffffff 0%, #fbf5f2 100%);
  font-family: "Source Code Pro", monospace;
  color: #333;
  padding: 8px 10px;
  border: solid #ec6a2e;
  border-width: 5px 2px 2px 2px;
  white-space: normal;
  word-wrap: break-word;
}

/* Pagination */
.articles-page .pagination .page-link {
  border: 0;
  background-color: transparent;
  margin: 0 5px;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  line-height: normal;
  color: #686969;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles-page .pagination .active > .page-link,
.articles-page .pagination .page-link.active {
  background-color: #000;
  color: #fff;
  font-weight: 600;
}

.articles-page .pagination .page-item:not(:last-child) .page-link:hover {
  background-color: #333;
  color: #fff;
}

/* Responsive */
@media (min-width: 1200px) {
  .articles-page .search-wrap {
    max-width: 39%;
  }
}

@media (max-width: 767.98px) {
  .articles-page .article-box .a-body {
    padding: 16px;
  }
  .articles-page .filter-action {
    flex-direction: column;
  }
  .articles-page .hero-section h1 {
    font-size: 42px;
  }
}

@media (max-width: 575.98px) {
  .articles-page .hero-section {
    padding: 100px 0 32px;
  }
  .articles-page .hero-section h1 {
    font-size: 32px;
  }
  .articles-page .articles .cta a {
    width: 100%;
  }
}

/* Learn */
.learn-filter,
.learn-filter:hover {
  background-color: var(--color-white);
  border: 1px solid #e2e3e4;
  padding: 6px 16px;
  border-radius: 16px;
  color: var(--color-body);
  font-weight: 400;
  font-size: var(--font-body-3);
}

.learn-filter.active,
.learn-filter:focus {
  background: linear-gradient(90deg, #ffffff 0%, #fef6f3 100%);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: none;
}

.search-form .form-control {
  max-width: 560px;
}

@media (max-width: 576px) {
  .search-form .form-control {
    max-width: 100%;
  }
}

.search-filter-label {
  cursor: pointer;
  margin-right: 0;
}

.search-filter-label .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

#searchResults {
  z-index: 1050;
  max-height: 340px;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

#searchResults .list-group-item {
  padding: 10px 12px;
}

#searchResults .list-group-item a {
  text-decoration: none;
}

@media (max-width: 575.98px) {
  #searchResults {
    max-height: 260px;
  }
  .search-filter-label {
    font-size: 13px;
  }
}

.learn-catbox {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
  position: relative;
}
.learn-catbox.it-admin {
  background: linear-gradient(to bottom, #ffffff 0%, #fdf0ea 100%);
}
.learn-catbox .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.learn-catbox .placeholder-ic {
  position: absolute;
  bottom: 10px;
  right: 22px;
}
.listing-style li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
  font-size: var(--font-body-3);
  font-weight: 500;
}
.listing-style li::before {
  content: "";
  position: absolute;
  background: url(../images/shield-list-ic.svg) no-repeat center center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  left: 0;
  top: 2px;
  background-size: 100%;
}
.article-box.learn .a-footer {
  border: 0;
  padding: 0 20px 20px;
}
.article-box.learn .a-body p {
  margin-bottom: 0;
}
.article-box.learn .a-body .title,
.article-box.learn .a-body .title a {
  font-size: var(--font-body-1);
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 10px;
}
.article-box.learn {
  margin-bottom: 24px;
  height: calc(100% - 24px);
}
.article-box.learn .a-footer a {
  border-bottom: 1px solid;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  font-size: var(--font-body-3);
  font-weight: 500;
  padding: 0;
}
.card-gradient {
  background:
    url("/custom/images/gradient-spot.svg") no-repeat,
    var(--color-blue500);
  background-size: auto;
  background-position: left 150px top -20px;
  border-color: var(--color-primary);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  height: calc(100% - 24px);
}
.card-gradient .card-title {
  font-size: var(--font-body-1);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-gradient p {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .cta {
    padding: 32px;
  }
}

@media (max-width: 991.98px) {
  .fixed-top {
    background-color: var(--color-white);
  }
  .cta {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: var(--h3);
  }
  .hero-section h1 {
    font-size: var(--h2);
  }
  footer .basic-info {
    text-align: left;
  }
  /* wrapper */

  .feature-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* hide scrollbar (optional) */

  .feature-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .feature-tabs {
    flex-wrap: nowrap;
    border: 0;
    gap: 20px;
    min-width: max-content;
  }

  /* nav item */

  .feature-tabs .nav-item {
    flex: 0 0 auto;
  }

  /* nav link */

  .feature-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    color: #686969;
    white-space: nowrap;
    font-weight: 500;
  }

  /* active tab */

  .feature-tabs .nav-link.active {
    background: #fbefea;
    color: #ec6a2e;
  }

  /* svg inherit color */

  .feature-tabs svg path {
    fill: currentColor;
  }
}

@media (max-width: 575.98px) {
  .hero-section .btn,
  .cta .btn {
    width: 100%;
    justify-content: center;
  }
}
