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

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

  --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
-------------------------*/
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);
}

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

.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) !important;
}

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

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

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

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

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

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

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

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

.box-shadow-default {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
}

section {
  padding: 60px 0;
}

.hero-section.no-banner {
  padding: 30px 0 64px;
  background: var(--bg-brown-light);
}
.hero-section .subheading {
  font-size: var(--h5);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}
.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 {
  height: 24px;
}
.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;
}

nav .nav-item .nav-link.join-now:hover {
  color: var(--color-white) !important;
  background-color: var(--color-secondary);
}

.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;
  border-radius: 0 0 25px 25px;
}

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

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

.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;
}
.section-title.sub {
  font-size: var(--h3);
}
/* 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 0;
}

/* 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;
}

.tabs-small .feature-tab {
  padding: 8px 10px;
  font-size: var(--font-body-4);
}

/* Active Tab */

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

/* SVG icon */

.feature-tab .tab-icon svg {
  width: 32px;
  height: 32px;
  transition: 0.3s;
}
.tabs-small .feature-tab .tab-icon svg {
  width: 24px;
  height: 24px;
}

/* 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;
}
.tabs-small .feature-card {
  padding: 16px;
}

/* Image */

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

.step-card {
  background: var(--color-white);
  padding: 24px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  height: calc(100% - 24px);
  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: 48px;
}

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

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

.cta p.highlight-text {
  color: #a84b21;
  font-style: italic;
}

.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;
}

.card-gradient.white {
  background: var(--color-white);
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.03);
}

.card-gradient.card-element {
  position: relative;
  background-position: left 120px bottom -120px;
}

.card-gradient.card-element .card-title {
  font-size: var(--h2);
  color: var(--color-primary);
  font-weight: 800;
  font-family: var(--font-header);
}

.card-gradient.card-element span {
  border-bottom: 1px solid;
  color: var(--color-body);
  padding-bottom: 4px;
}

.card-gradient.card-element img.bg-element {
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.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 .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: var(--color-primary);
}

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;
  line-height: normal;
}

/* 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 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;
  margin-bottom: 24px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.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;
}
.learn-catbox a {
  margin-top: auto;
}
.listing-style li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 30px;
  font-size: var(--font-body-3);
  font-weight: 500;
}
.listing-style li:last-child {
  margin-bottom: 0;
}
.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 .a-body .title:hover,
.article-box.learn .a-body .title a:hover {
  color: var(--color-primary);
}
.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 -50px;
  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;
}

.ten-steps-content .links-block {
  background-color: var(--color-blue500);
  border-radius: 16px;
  padding: 16px;
}
.ten-steps-content #navbar-steps .links-block:not(:last-child) {
  margin-bottom: 1rem;
}
.ten-steps-content .links-block ul .step-link {
  background: var(--color-white);
  box-shadow: 0 0px 6px 0px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 16px;
  margin-bottom: 10px;
}
.ten-steps-content .links-block ul .step-link:last-child {
  margin-bottom: 0;
}
.ten-steps-content .links-block ul .step-link h4,
.ten-steps-content .links-block .l-title {
  font-size: var(--font-body-2);
  font-weight: 700;
  margin-bottom: 8px;
}
.ten-steps-content .links-block .l-title {
  margin-bottom: 1rem;
}
.ten-steps-content .links-block ul .step-link.active h4 {
  color: var(--color-primary);
}
.ten-steps-content .links-block li.active {
  background: linear-gradient(120deg, #ffffff 0%, #fef6f3 60%, #fbe2d7 100%);
  border-color: var(--color-primary);
}
.ten-steps-content .links-block ul .step-link span,
.ten-steps-content .links-block .l-content {
  font-size: var(--font-body-4);
  color: var(--color-body);
}
.ten-steps-content .scrollspy-steps {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #eef0f3;
}
.ten-steps-content #navbar-steps {
  position: relative;
  top: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ten-steps-content.fixed #navbar-steps {
  position: sticky;
  z-index: 99;
  width: 100%;
  top: 80px;
  max-height: calc(100vh - 85px);
  overflow: auto;
}
.ten-steps-content .links-block .ref-links li a {
  font-weight: 400;
}
.scrollspy-steps .step-block h2,
.scrollspy-steps h2,
.ten-steps-content h2.main-title {
  font-size: 24px;
  color: var(--color-primary);
}
.ten-steps-content .b-list {
  padding: 0 20px;
  margin-bottom: 16px;
}
[id^="step"] p.main-content:last-of-type {
  margin-bottom: 2rem;
}
[id^="step"]:last-of-type p.main-content:last-of-type {
  margin-bottom: 0;
}
.ten-steps-content .b-list li {
  list-style-type: disc;
  padding: 0;
}
.ten-steps-content .sub-title {
  font-size: var(--font-body-1);
  font-weight: 700;
  margin-bottom: 8px;
}
.ten-steps-content .ips-block {
  background-color: var(--bg-orange-light);
  padding: 12px;
  color: var(--color-secondary);
  border-radius: 8px;
}
.ten-steps-content .b-list li span {
  display: inline-block;
  font-weight: 600;
  padding: 0;
}
.numb-list li {
  list-style-type: decimal;
}
.scrollspy-steps .step-block ol li {
  list-style-type: decimal;
}
.scrollspy-steps [id^="step"]:not(:first-child) {
  margin-top: 36px;
}
.scrollspy-steps .step-block,
[id^="step"] {
  scroll-margin-top: 100px;
}
.step-block .accordion-header .accordion-button {
  font-weight: 600;
}
.ten-steps-content .tbl-data {
  margin-top: 20px;
}
.tbl-data thead th,
.tbl-data tbody td {
  padding: 8px;
}
.tbl-data thead th {
  background-color: #fdf0ea;
  color: var(--color-secondary);
  font-size: var(--font-body-3);
  font-family: var(--font-header);
  font-weight: 700;
  box-shadow: none;
  border: 0;
}
.tbl-data tbody {
  border: 0;
  background-color: #f8f9fa;
}
.tbl-data tbody tr {
  background: var(--color-white);
}
.tbl-data tbody tr td {
  color: var(--color-body);
  border: 0;
}
.tbl-data tbody tr:nth-child(even) td {
  background: var(--color-blue500);
}
.tbl-data thead th:first-child {
  border-radius: 3px 0 0 3px;
}
.tbl-data thead th:last-child {
  border-radius: 0 3px 3px 0;
}
.tbl-data tbody tr td:first-child {
  border-radius: 3px 0 0 3px;
}
.tbl-data tbody tr td:last-child {
  border-radius: 0 3px 3px 0;
}
.tbl-data tbody tr:last-child td {
  border: 0;
}

.bg-img-wrapper {
  padding: 20px;
  background: var(--color-blue500);
}
.bg-img-wrapper:hover img {
  transform: scale(1.05);
}
.bg-img-inner img {
  transition: transform 0.4s ease;
}
.bg-img-inner {
  box-shadow: 0 0 11px 3px rgba(0, 0, 0, 0.1);
}

/** Pricing Section Starts **/
.pricing-card {
  background: var(--color-blue500);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.pricing-card.highlight {
  background: linear-gradient(
    180deg,
    #fdf0ea 50%,
    #fce4d9 75%,
    #fbdecf 95%,
    #fad8c7 100%
  );
}

.pricing-title {
  font-family: var(--font-header);
  font-size: var(--h4);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-secondary);
}

.pricing-title.highlight-text {
  color: var(--color-primary);
}

.price {
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.price span {
  font-size: var(--font-body-3);
  font-weight: 600;
  color: #606060;
  font-family: var(--font-body);
}

.pricing-desc {
  padding: 12px 0;
  font-size: var(--font-body-4);
  border-bottom: 1px solid #ccc;
}

.pricing-desc:last-child {
  border-bottom: 0;
  margin-bottom: 18px;
}

.btn-light-custom {
  background: #e2e3e4;
}

/* Pricing Toggle Style */
.toggle,
.toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}
.toggler {
  color: #ddd;
  transition: 0.2s;
  font-weight: bold;
}
.toggler--is-active {
  color: var(--color-secondary);
}
.b {
  display: block;
}
.toggle {
  position: relative;
  width: 50px;
  height: 24px;
  border-radius: 100px;
  background-color: var(--color-primary);
  overflow: hidden;
  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
.check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}
.check:checked ~ .switch {
  right: 2px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}
.switch {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 57.5%;
  background-color: #fff;
  border-radius: 36px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

/** Pricing Section Ends **/

/** FAQ Starts **/
.accordion-header {
  font-family: var(--font-body);
}
.accordion-button {
  font-size: var(--font-body-3);
  font-weight: 600;
  border-radius: 8px !important;
  color: var(--color-secondary);
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: var(--color-blue500);
  box-shadow: none;
  border-radius: 8px 8px 0 0 !important;
  color: var(--color-secondary);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  background-color: var(--color-white);
  margin-bottom: 16px;
  border-radius: 8px !important;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
  border: 0;
}
.accordion-body {
  background-color: var(--color-white);
  border-radius: 0 0 8px 8px;
  font-size: var(--font-body-4);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%205v14M5%2012h14%22%20stroke%3D%22%23f26522%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
  transform: scale(1) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%2012h14%22%20stroke%3D%22%23f26522%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
}
/** FAQ Ends **/

/* Wrapper */
.radial-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 550px;
  margin: 0 auto;
  overflow: visible;
  --radius: min(32vw, 180px);
}

/* Center shield */
.center-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-shield img {
  width: 360px;
}

/* Circle container */
.circle {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 1px;
  height: 1px;
  transform: translate(-40%, -40%);
}

/* Items */
.item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 108px;
  height: 108px;
  font-size: 13px;
  background: var(--bg-orange-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-secondary);
  font-weight: 600;
  transform: rotate(var(--angle)) translate(var(--radius))
    rotate(calc(-1 * var(--angle)));
  transform-origin: center;
  line-height: normal;
  border: 4px solid transparent;
}

.item .top-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover */
.item:hover {
  z-index: 10;
  background: var(--color-primary);
  color: var(--color-white);
  border: 4px solid var(--color-white);
  transform: rotate(var(--angle)) translate(var(--radius))
    rotate(calc(-1 * var(--angle)));
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
}

.item svg path {
  fill: var(--color-primary);
}

.item:hover path {
  fill: currentColor;
}

/* Tooltip */
.tooltip {
  position: absolute;
  white-space: normal;
  z-index: 999;
  bottom: 120%;
  max-width: 235px;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease;
}

/* Tooltip arrow */
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

/* Desktop only hover behavior */

.tooltip {
  position: absolute;
  opacity: 0;
  transform: translateX(-50%) scale(0.95);
  pointer-events: none;
  background: #000;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  width: 260px;
}

.item:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

pre {
  display: block;
  padding: 15px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--color-secondary);
  background-color: var(--color-blue500);
  border: 0;
  border-radius: 5px;
  border-left: 5px solid var(--color-primary);
}

.gradient-border-wrapper {
  padding: 8px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-white));
  height: 100%;
}

.gradient-border-wrapper.right {
  background: linear-gradient(-90deg, var(--color-primary), var(--color-white));
  border-radius: 0 24px 24px 0;
}

.gradient-border-inner {
  background: var(--bg-orange-light);
  border-radius: 18px 0 0 18px;
  padding: 24px;
  height: 100%;
}

.gradient-border-wrapper.right .gradient-border-inner {
  border-radius: 0 18px 18px 0;
}

.img-wrapper {
  height: 100%;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Setup Guide */
.btn-group .btn {
  background-color: var(--color-white);
}
.btn-group .btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.setup-guide-tabs .feature-tab .tab-icon svg {
  width: 24px;
  height: 24px;
}
.general-tab-content {
  padding: 1rem 0;
}
.general-tab-content.tab-content .bg-grey100 {
  background-color: #f8f9fa;
}
.ipv-accordion.accordion {
  --bs-accordion-border-color: transparent;
}
.ipv-accordion .accordion-button {
  background-color: #f8f9fa;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}
.ipv-accordion .accordion-item {
  border: 0;
}
.ipv-accordion .accordion-body {
  padding: 0 10px 12px;
  background-color: #f8f9fa;
  color: #626364;
}
.ipv-accordion .accordion-button::after {
  background-image: url("/custom/images/accordion-arrow.svg");
  background-size: 30px;
  background-position: center;
}
.ipv-accordion .accordion-button:focus {
  box-shadow: none;
}
.cmd-lines p {
  margin-bottom: 0;
}
.dns-icon-place {
  position: absolute;
  right: 15px;
  bottom: 25px;
}
.setup-guide-tabs {
  border: 1px solid #eee;
  padding: 0;
  border-radius: 8px;
}
.setup-guide-tabs .instruction-list {
  margin-top: 32px;
}
.setup-guide-tabs .instruction-list li {
  margin-bottom: 8px;
}
.setup-guide-tabs .instruction-list li:last-child {
  margin-bottom: 0;
}
.setup-guide-tabs .instruction-list li .step-number {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  background-color: #f2f2f7;
  border-radius: 50%;
  font-weight: 600;
  margin-right: 12px;
  font-size: 12px;
}
.setup-guide-tabs .highlight {
  font-weight: 600;
}
.setup-guide-tabs .recommended {
  font-size: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}
.general-tab-content.tab-content .steptitle {
  margin-bottom: 4px;
}
.general-tabs {
  padding: 16px 24px;
}
.general-tabs .dropdown-toggle,
.general-tabs .dropdown-toggle:focus {
  background-color: var(--color-primary);
  width: 100%;
  border: 0;
  box-shadow: none;
}
.general-tabs .dropdown-item.active,
.general-tabs .dropdown-item:active {
  background-color: #f8f9fa;
  color: var(--color-secondary);
}
.general-tabs .dropdown-menu {
  width: calc(100% - 20px);
  border: 0;
}
.general-tab-content.tab-content .divider-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}
.general-tab-content.tab-content .divider-line {
  height: 1px;
  background-color: #dee2e6;
}
.general-tab-content.tab-content .small-line {
  flex-grow: 0;
  flex-shrink: 0;
  width: 30px;
}
.general-tab-content.tab-content .large-line {
  flex-grow: 1;
  height: 1px;
  background-color: #dee2e6;
}
.general-tab-content.tab-content .divider-text {
  z-index: 1;
  margin: 10px -10px 10px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #dee2e6;
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
  background-color: #ffffff;
}
.general-tab-content.tab-content .code-snippet {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border: 0;
  font-size: 16px;
  width: 100%;
  display: block;
}
.round-step {
  width: 42px;
  height: 42px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 42px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 600;
  margin: 0;
  margin-right: 12px;
  font-size: var(--font-body-1);
}

/* CARD */
.filter-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 16px;
  gap: 24px;
}

.filter-label-wrap {
  min-width: 360px;
  max-width: 360px;
  padding: 2px 0 2px 2px;
  border-radius: 8px 0 0 8px;
  display: flex;
  background: linear-gradient(90deg, #ec6a2e, rgba(236, 106, 46, 0.1));
}

.filter-label {
  background: linear-gradient(180deg, #ffffff 0%, #fdf0ea 100%);
  border-radius: 6px 0 0 6px;
  color: var(--color-primary);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: var(--font-body-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 24px;
  width: 100%;
  height: 100%;
}

.filter-content {
  flex: 1;
}

.contact-card {
  padding: 24px;
  height: calc(100% - 24px);
}
.contact-card .card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-card .card-title h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 0;
}
.contact-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(236, 106, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card hr {
  margin: 18px 0;
  border-color: #e2e3e4;
  opacity: 1;
}
.contact-card .icon-wrap img {
  width: 28px;
  height: 28px;
}
.contact-card h6 {
  color: #a84b21;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: var(--font-body-2);
  font-family: var(--font-body);
}
.contact-card p {
  margin-bottom: 0;
  word-wrap: break-word;
}
.contact-card .social-list .l-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e3e4;
}
.contact-card .social-list span {
  display: block;
  color: var(--color-secondary);
  font-size: var(--font-body-2);
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .filter-card {
    flex-direction: column;
    gap: 16px;
  }

  .filter-label-wrap {
    max-width: 100%;
    min-width: 100%;
    background: linear-gradient(90deg, #ec6a2e, rgba(236, 106, 46, 1));
    padding: 2px;
    border-radius: 8px;
  }

  .filter-label {
    font-size: 20px;
    padding: 8px;
    border-radius: 6px;
  }
}

@media only screen and (max-width: 567px) {
  .general-tabs {
    padding: 10px;
  }
  .general-tab-content.tab-content .tab-pane .px-4 {
    padding: 0 10px !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .radial-wrapper {
    width: 100%;
    height: 100%;
  }

  .item {
    width: 90px;
    height: 90px;
    font-size: 12px;
    transform: rotate(var(--angle)) translate(150px)
      rotate(calc(-1 * var(--angle)));
  }

  .item:hover {
    transform: rotate(var(--angle)) translate(150px)
      rotate(calc(-1 * var(--angle))) scale(1.05);
  }

  .center-shield img {
    width: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .card-gradient.card-element img.bg-element {
    width: 48px;
  }
}

@media (max-width: 1199.98px) {
  .logo-main {
    width: 160px;
  }
  .navbar-nav .nav-link {
    font-size: 15px;
  }
  nav .nav-item .nav-link.join-now {
    padding: 12px;
  }
  .cta {
    padding: 32px;
  }
  .pricing-card {
    padding: 16px;
  }
  .card-gradient.card-element .card-title {
    font-size: var(--h3);
  }
}

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

  .cta {
    padding: 24px;
    background: linear-gradient(180deg, #fdf0ea 20%, #ec6a2e 100%);
  }

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

  .center-shield {
    display: none;
  }

  .circle {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
  }

  .item {
    position: relative;
    transform: none !important;
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  .item svg {
    width: 32px;
    height: 32px;
  }

  .item .top-row .title {
    font-size: var(--font-body-3);
  }

  .item > svg,
  .item > span,
  .item > strong {
    display: inline-block;
  }

  .item::before {
    content: "";
  }

  .item {
    display: flex;
  }

  .item svg + .tooltip {
    margin-top: 6px;
  }

  .item {
    gap: 8px;
  }

  .item > svg {
    margin-right: 8px;
  }

  .item {
    font-weight: 600;
  }

  .tooltip {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    color: var(--color-secondary);
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    display: block;
  }

  .tooltip::after {
    display: none;
  }

  .item .top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 600;
  }

  .radial-wrapper {
    aspect-ratio: auto;
    max-width: 100%;
  }

  .item:hover .tooltip {
    transform: none;
    color: var(--color-white);
  }

  .gradient-border-inner {
    border-radius: 18px 18px 0 0;
  }

  .gradient-border-wrapper {
    border-radius: 24px 24px 0 0;
    background: linear-gradient(
      180deg,
      var(--color-primary),
      var(--color-white)
    );
  }

  .gradient-border-wrapper.right {
    background: linear-gradient(
      -360deg,
      var(--color-primary),
      var(--color-white)
    );
    border-radius: 0 0 24px 24px;
  }

  .gradient-border-wrapper.right .gradient-border-inner {
    border-radius: 0 0 18px 18px;
  }
}

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

  .feature-tabs-dropdown {
    padding: 12px 16px;
    font-weight: 500;
    border-radius: 10px;
  }

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

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

  .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;
  }
}

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