/* Fonts */
:root {
  --default-font: system-ui,-apple-system,微软雅黑,microsoft yahei, Roboto, helvetica neue,pingfang sc,PingFangSC-Light,Helvetica,"Noto Sans", "Liberation Sans", Tahoma,segoe ui,Roboto,Arial,hiragino sans gb,wenquanyi micro hei,sans-serif,apple color emoji,segoe ui emoji,"Noto Color Emoji";
  --heading-font: "Montserrat", 微软雅黑,"microsoft yahei", sans-serif,"pingfang sc",PingFangSC-Light;
  --nav-font: "Montserrat", 微软雅黑,"microsoft yahei", sans-serif,"pingfang sc",PingFangSC-Light;
  -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  /*--accent-color: #106eea; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  /*  --accent-color:#2d74ff; */
  --accent-color:#2d74ff;
  --border-color:#e5e5e5;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
   /* --nav-hover-color: #106eea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2d74ff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-hover-color: #2d74ff; 
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
  --border-color:#e5e5e5;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
    --border-color:#f5f5f5;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
  --bs-gutter-x:0;
  --bs-gutter-y:0;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,p{
  color: var(--heading-color);
  font-family: var(--heading-font);
  word-break: break-word;
  line-break: loose;
}

/* removed broken global paragraph clamp (-webkit-line-clamp:2 without overflow:hidden
   caused text to overflow and overlap following elements site-wide) */
button:focus {
    outline: 0!important
}

.button,button,input[type=button],input[type=reset],input[type=submit] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;
    -ms-transition: background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;
    transition: background-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;
    border-radius: .325rem;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    height: 2.825rem;
    line-height: 2.825rem;
    padding: 0 1.5rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap
}

.button.icon:before,button.icon:before,input[type=button].icon:before,input[type=reset].icon:before,input[type=submit].icon:before {
    margin-right: .5rem;
    opacity: .5
}

.button.fit,button.fit,input[type=button].fit,input[type=reset].fit,input[type=submit].fit {
    width: 100%
}

.button.wide,button.wide,input[type=button].wide,input[type=reset].wide,input[type=submit].wide {
    width: 9rem
}

.button.small,button.small,input[type=button].small,input[type=reset].small,input[type=submit].small {
    font-size: .8rem;
    height: 2.11875rem;
    line-height: 2.11875rem;
    padding: 0 1.25rem
}

.button.large,button.large,input[type=button].large,input[type=reset].large,input[type=submit].large {
    font-size: 1.325rem;
    height: 3.53125rem;
    line-height: 3.53125rem;
    padding: 0 1.75rem
}

.button:disabled,button:disabled,input[type=button]:disabled,input[type=reset]:disabled,input[type=submit]:disabled {
    pointer-events: none;
    opacity: .25
}

.button,button,input[type=button],input[type=reset],input[type=submit] {
    background-color: transparent;
    color: #454545;
}

.button:hover,button:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover {
    color: #2d74ff;
}

.button:hover:active,button:hover:active,input[type=button]:hover:active,input[type=reset]:hover:active,input[type=submit]:hover:active {
    background-color: rgba(238,101,136,.075)
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.wrapper{width:100%;margin:0 auto;padding:20px 0;background-color:#fff;position:relative;overflow:hidden}
.page-border{position:fixed;z-index:999999;pointer-events:none}
.page-border .bottom-border,.page-border .left-border,.page-border .right-border,.page-border .top-border{background:#e4ebf1;position:fixed;z-index:9999}
.page-border>.bottom-border,.page-border>.left-border,.page-border>.right-border,.page-border>.top-border{padding:11px;background:#e4ebf1}
.page-border .bottom-border,.page-border .top-border{width:100%;padding:10px;left:0}
.page-border .left-border,.page-border .right-border{padding:10px;height:100%;top:0}
.page-border .top-border{top:0}
.page-border .right-border{right:0}
.page-border .bottom-border{bottom:0}
.page-border .left-border{left:0}
.main {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--footer-height) - var(--footer-margin-top));
    margin-top: 60px
}
@media only screen and (max-width:480px){.page-border{display:none}
.wrapper {
    width:100%;
    margin: 0;
    padding:0;
    background-color: #fff;
    position: relative;
    overflow: hidden

}
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
   display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
     justify-content: space-between;
     align-items: center;
    position: fixed !important;
    flex-wrap: wrap;
    box-shadow: 0 1px 12px rgba(55, 99, 170, .1);
    width: 100%;
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  flex: 0 0 100%;
    position: relative;


}

.header .topbar {
  transition: all 0.3s ease;
}

.header .topbar.hidden {
  display: none !important;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}
@media (max-width: 480px) {
  .hide-on-xs {
    display: none !important;
  }
  .contact-container {
    justify-content: space-between !important;
  }
}
@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  position: relative;
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
   width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 auto !important;
  box-sizing: border-box;
   flex-basis: 100%;
}

.header .logo {
  padding-left: 20px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.sitename {
  font-size: 14px;
    margin: 10px;
    margin-top: 20px;
    font-weight: 500;
   color: color-mix(in srgb, var(--heading-color), transparent 25%);

}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  display: none !important;
}

@media (max-width: 375px) {
  .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  display: none !important;
}

}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu i.console{
    font-size: 16px;
    padding: 5px;
    font-weight: border;
  }

  .navmenu .dropdown a:hover,
  .navmenu .dropdown a.active:hover,
  .navmenu .dropdown a:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
 .navmenu .dropdown li.dropdown-item:not(:last-child) {
  border-bottom: 1px #e5e5e5 solid;
 }
  .navmenu .dropdown li.dropdown-item a {
    color:var(--nav-color);
  }
 .navmenu .dropdown li.dropdown-item:not(:last-child):hover{
  border-color: var(--nav-dropdown-hover-color);
  color: var(--nav-dropdown-hover-color);

 } 
 .nav-addons {
    align-items: center;
    align-self: center;
    align-content: center;
    display: flex
}

.nav-addons a {
    color: #585b60;
    padding-left: 1rem;
    padding-right: 1rem
}
.nav-addons li.dropdown a ,.nav-addons ul.list-unstyled li a{ padding-left:0;padding-right:0; }
#lang-choose img {
    width: 24px
}

.nav-addons a.active,.nav-addons a:hover {
    color: #585b60
}

.nav-addons a.sign-up {
    color: #fff
}

.sign-up {
    background: #f63854;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: .25px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    transition: background .2s,box-shadow .2s
}

.material-symbols-outlined {
    vertical-align: middle
}
#lang-choose {padding-left: 10px;padding-right: 10px;}
#lang-choose img
{width:24px;}
#lang-choose ul
{ left: -80px;
  top: 130%;
  }

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 34px;
    top: 18px;
    right: 20px;
    margin-right: 0;
    z-index: 10001;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    z-index: 10000;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.nav-margin-fix {
    margin-right: 0!important
}

@media screen and (min-width: 481px) {
    .nav-margin-fix {
        margin-right:1.5rem!important
    }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}
.service-guarantee-section{
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title,.description-title {
  color: var(--accent-color);
}
.section-title p .pink {
  color: #2d74ff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero{
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, rgba(7,11,20,.82) 0%, rgba(7,11,20,.55) 45%, rgba(7,11,20,.30) 100%), url("/img/bg-header.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-img {
    width: 50%;
    position: absolute;
    right: 20px;
    animation: flashing 1.5s linear;
    max-width: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: right;

}
.product-hero-img
{object-fit: cover;
padding: 20px;
max-width: 375px}




.edge,.about,.blog-banner,.uav,.product-banner {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;
  height: 60vh;

}

.edge {
    background: url("/img/network-banner.jpeg") center left;
    height: 60vh;
}
.about{height: 60vh;
background: url("/img/enterprise.jpeg") center left;
}
.bgp {
    background: url("/img/cloud-network.png") center left;
  background-size: cover;
  background-repeat: no-repeat;
}
.uav 
{background: url("/img/uav-adv.jpg") center left;
  background-size: cover;
  background-repeat: no-repeat;}
.rack {
  background: url("/img/hero-rack.jpg") center left;
  background-size: cover;
  background-repeat: no-repeat;
}  
.documents,.bgp {
  width: 100%;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;

}
.hero:before {
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#wlstack .carousel-inner.row {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.edge:before,bgp:before {
 -moz-transition: opacity 1s ease-in-out, -moz-transform 1s ease-in-out;
      -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
      -ms-transition: opacity 1s ease-in-out, -ms-transform 1s ease-in-out;
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      background-image: linear-gradient(90deg, rgba(0,0,0, 0.7), rgba(3, 3, 3, 0.3));
        position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
    content: "";


}
.hero .container ,.edge .container,.bgp .container{
  position: relative;
}

.hero h1,.edge h1 ,.bgp h1,.about h1,.blog-banner h1{
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--contrast-color);

}

.hero h1 span,.edge  h1 span,.bgp h1 span {
  color: var(--contrast-color);
}

.hero p,.edge p ,.bgp p,.about p,.about-content p,.blog-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 20px;
  font-weight: 400;
}
.about-content p{
  color: var(--nav-color);
  display: block;

}

.hero .btn-get-started ,.edge .btn-get-started,.bgp .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover,.edge .btn-get-started:hover,.bgp .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated ,.edge .animated{
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero .carousel {
    position: relative;
    zoom:1;width: 100%;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    padding: 0;
    margin: 0;
    z-index: 0;
    --edge: var(--bs-gutter-x, 0rem);
    overflow: hidden;
}
.carousel-inner {
    width: 100%;
    height: 460px;
    position: relative;
    border-bottom: none;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto;

}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;

}

.home-about-img {
    height: 100px;
    display: block;
    width: 100%;
    position: relative;

}

.carousel-item-next,.carousel-item-prev,.carousel-item.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.carousel-item-next,.carousel-item-prev {
    position: absolute;
    top: 0
}

.hero .carousel-item div.d-flex{
      display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
    padding: 40px;



}
.hero .carousel-item div.d-flex h1,.hero .carousel-item div.d-flex p{
  width: 100%;
  display: block; 
  padding-left: 20px;
  padding-right: 20px;
  z-index: 100;
  position: relative;

}

@media(-webkit-transform-3d) {
    .carousel-item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-item-next.carousel-item-start,.carousel-item-prev.carousel-item-end {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    .active.carousel-item-end,.carousel-item-next {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    .active.carousel-item-start,.carousel-item-prev {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@supports(-webkit-transform: translate3d(0,0,0)) or (transform:translate3d(0,0,0)) {
    .carousel-item {
        -webkit-transition:-webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-item-next.carousel-item-start,.carousel-item-prev.carousel-item-end {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    .active.carousel-item-end,.carousel-item-next {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    .active.carousel-item-start,.carousel-item-prev {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.carousel-control-next, .carousel-control-prev{
  z-index: 99;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 460px;
  width: 10%;
}
button.carousel-control-next , button.carousel-control-prev {
  box-shadow:none !important;
}

button.carousel-control-next:hover,button.carousel-control-prev:hover{
      box-shadow:none !important;
    color: #2d74ff !important;
          background: none;

}

button.carousel-control-next:active,button.carousel-control-next:hover:active,button.carousel-control-prev:active,button.carousel-control-prev:hover:active {
      box-shadow:none !important;
      background: none;
}
.img-edge{
      position: absolute;
    height: 100%;
    width: 100%;
    right:0px;
    bottom: 0;
    color: transparent;
}
.i_read_more {
    width: 100%;
    position: absolute;
    bottom: 0;
    line-height: 2rem;
    justify-content: center;
    align-self: center;
    align-items: center;
    border: 1px solid rgba(34,34,34,0.8);
    text-align: center;
    cursor: pointer;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}
.i_read_more:hover{
  background: #2d74ff;
  color: #fff;
}
.i_read_more svg {
    margin-left: .5rem
}

.i_read_more:hover svg {
    fill: #2d74ff;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
    .hero-img{
    display: none;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

#featured-services .row { align-items: stretch; }

#featured-services .col-xl-3.col-md-6.d-flex { display: flex; }
.right-line::before {
    position: absolute;
    width: 40px;
    height: 3px;
    right: 0;
    bottom: -1px;
    transition: .3s;
    content: "";
    background: linear-gradient(90deg ,rgba(45,116,255,.9),rgba(61,133,198,.9));
    z-index: 2
}

.right-line::after {
    position: absolute;
    width: 3px;
    height: 40px;
    right: -1px;
    bottom: 0;
    transition: .3s;
    content: "";
    background: linear-gradient(90deg ,rgba(45,116,255,.9),rgba(61,133,198,.9));
    z-index: 2
}

.left-line::before {
    position: absolute;
    width: 40px;
    height: 3px;
    left: 0;
    top: -1px;
    transition: .3s;
    content: "";
    background: linear-gradient(90deg ,rgba(45,116,255,.9),rgba(61,133,198,.9));
    z-index: 2
}

.left-line::after {
    position: absolute;
    width: 3px;
    height: 40px;
    left: -1px;
    top: 0;
    transition: .3s;
    content: "";
    background: linear-gradient(90deg ,rgba(45,116,255,.9),rgba(61,133,198,.9));
    z-index: 2
}
.left-line, 
.right-line,
.left-line::before, 
.left-line::after,
.right-line::before, 
.right-line::after {
    pointer-events: none !important;
}

.service-item a {
    position: relative !important;
    z-index: 20 !important; 
    pointer-events: auto !important;
    cursor: pointer;
}
.service-item .active,.service-item:hover {
    transform: scale(1.05);
    transition: all 2s ease 0s
}

.service-item:hover .right-line::after {
    height: 100%;
    transition: all 2s ease 0s
}

.service-item .active .right-line::before,.service-item:hover .right-line::before {
    width: 100%;
    transition: all 2s ease 0s
}

.service-item .active .left-line::before,.service-item:hover .left-line::before {
    width: 100%;
    transition: all 2s ease 0s
}

.service-item .active .left-line::after,.service-item:hover .left-line::after {
    height: 100%;
    transition: all 2s ease 0s
}
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
   display: flex;
  flex-direction: column;
  flex: 1 1 auto;  
   height: auto !important;  
}
.about-content {
  position: relative;
}
.featured-shadow:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: box-shadow .3s ease;
    box-shadow: 0 16px 56px 6px 
}
.bgp-feature {
  background: url(/img/usersbg.png) 50% 100px  no-repeat;
  background-size: 60%;
}
.global  {
    background: url(/img/usersbg.png) 50% 100px no-repeat #f5f9ff;
}
.box-item{box-shadow:0 2px 18px 0 rgba(198,198,198,.3);padding:15px;line-height:22px;margin-top:30px;border-radius:3px;background-color:#fff;position:relative;top:0;transition:all .3s}.box-item .icon{text-align:center;margin:12px;font-size:60px;font-weight:400;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.box-item .icon i{color:#f63854;font-size:30px;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.box-item .text h4{cursor:pointer;font-size:18px;font-weight:500;line-height:22px;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.box-item .text p{font-size:14px;line-height:26px}.box-item:hover{box-shadow:0 10px 22px 10px rgba(27,38,49,.1)}.box-item:hover h4{color:#f63854}#features .show-box{margin-top:50px}#features .show-box img{width:100%}
@media only screen and (max-width:480px){.bgp-feature{background-size: cover;}

}
.gpu-item {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: all 0.3s ease-in-out;
  -moz-transition: opacity 1s ease-in-out, -moz-transform 1s ease-in-out;
      -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
      -ms-transition: opacity 1s ease-in-out, -ms-transform 1s ease-in-out;
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      max-width: 100%;
  padding: 1rem;
  color:var(--default-color);
  position: relative;
  position: relative;
  z-index: 1;
}
.gpu-item p{
  width: 100%;
  position: relative;
  margin: 0;
}
.gpu-prices {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s;
  z-index: 2;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 4px;
   color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.products {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;
  height: 60vh;

}

.products:after{ 
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none; z-index: 1;
  }

.products:after{
    width: 100%;
    height: 100%;
    background-image:linear-gradient(
    270deg, rgba(21, 24, 27, 0.85) 0%,   
    rgba(21, 24, 27, 0.4) 50%, transparent 100%);
    
}
.products .container{z-index: 2;}

.network-banner h1,.project-banner h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    line-height: 60px;
    height: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 99
}

.network-banner p,.project-banner p {
    text-align: center;
    color: #f5f5f5;
    z-index: 99
}

.network-grid,.bgp-grid,.project-grid {
    margin-top: 0
}

.bgp-grid {
    padding: 0
}

.bgp_intro {
    position: relative;
    width: calc(50% - 20px);
    margin-top: 10px;
    margin-bottom: 10px;
    height: 230px;
    overflow: hidden;
    line-height: 30px
}

.bgp-header img {
    width: calc(50% - 20px)
}

.network-grid h1 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 200;
    position: relative;
    height: 60px;
    line-height: 60px
}

.network-grid .feature-item-intro,.project-grid .feature-item-intro {
    margin-top: 20px
}

.project-grid .feature-item-intro {
    margin-top: 20px
}

.bgp-intro span {
    font-size: 12px;
    font-weight: 200;
    color: #666
}
.logo-wrapper img{
  height: 60px;
  width: 100%;
}
.network-grid .feature-item-intro:not(:last-child):after,.bgp-grid .feature-item-intro:not(:last-child):after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: #e5e5e5;
    transition: background .3s;
    height: 60%;
    width: 2px;
    top: 20%;
    right: -12px;
    transform: scale(0);
    transition: all 1s ease
}

.hero-list li:not(:last-child):after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: var(--theme-border-bak);
    transition: background .3s;
    height: 60%;
    width: 1px;
    top: 20%;
    right: -1px;
    transform: scale(0);
    transition: all 1s ease;
    z-index: 100
}

.network-grid .feature-item-intro:not(:last-child):hover:after,.hero-list li:not(:last-child):hover:after {
    transform: scale(1);
    transition: all 1s ease
}

.bgp-grid .feature-item-intro:not(:last-child):after {
    transform: scale(1);
    transition: all 1s ease;
    background: #e5e5e5;
    width: 1px;
    right: 0
}

.network-grid .feature-item-intro:last-child:after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: #e5e5e5;
    transition: background .3s;
    height: 60%;
    width: 2px;
    top: 20%;
    left: -12px;
    transform: scale(0);
    transition: all 1s ease
}
.bgp-page {
  padding-bottom: 0px;
}
.hero-list li:last-child:after,.hero-list li:last-child:hover:after {
    left: -1px
}

.network-grid .feature-item-intro:last-child:hover:after {
    transform: scale(1);
    transition: all 1s ease
}

.feature-item-intro:nth-child(4):after {
    display: none
}

.hero-list li:last-child:after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: #e5e5e5;
    transition: background .3s;
    height: 60%;
    width: 1px;
    top: 20%;
    transform: scale(0);
    transition: all 1s ease;
    z-index: 100
}

.hero-list li:last-child:hover:after {
    transform: scale(1);
    transition: all 1s ease
}

.bgp-grid {
    background: 0 0
}

.bgp-grid .feature-item-intro {
 
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
}
.feature-item-intro .card-title i{
  float: right;
}
.feature-item-intro .card-body p{
  line-height: 30px;
  word-break: break-all;
    text-align: justify;
}

.bgp-grid .feature-item-intro h2 {
    font-weight: 200;
    position: relative;
    line-height: 60px;
    height: 60px;
    letter-spacing: 1px;
    font-size: 1.75rem;
}
.bgp-routing-tabs .nav-tabs .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        height: 3px;
        background-color: #0d6efd; 
        border-radius: 2px;
    }
.bgp-routing-tabs .nav-tabs li{
  border-radius: 0;
  border:1px solid #e5e5e5;
  list-style: none;
  border-bottom: none;
}    
.bgp-routing-tabs .nav-tabs li:not(:last-child) {
  border-right: none;
}
.main-feature-card {
  position: relative;
    width: 100%;
    min-height: 100%;
    flex: 1 0 auto;
    display: flex
;
    flex-direction: column;
}
.main-feature-card .card-bg-img{
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.main-feature-card .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }

.bgp-routing-tabs .routing-node-card {
        transition: all 0.3s ease;
        background-color: #fff;
    }

.bgp-routing-tabs .routing-node-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
    }

.bgp-routing-tabs.transition-up {
        cursor: default;
    }



@keyframes revealFadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.item-title:before,h1.title:before {
    content: "";
    left: -12px;
    width: 2px;
    height: 40px;
    position: absolute;
    top: 10px;
    background: #0facf3;
    transition: background .3s
}
.gpu-prices:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
}


.addons{
  position: relative;
}
.addons h4 {
  position: relative;
  padding: 2rem;
  display: block;
  border-bottom: #e5e5e5 2px solid;
}
.addons h4:after{
  content: " ";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width:40%;
    background: linear-gradient(to right,#2d74ff 40%,#e5e5e5 60%);
    z-index: 1
}
.addons div{
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.addons .col-lg-4:not(:last-child):after {
    content: "";
    position: absolute;
    pointer-events: none;
    height: 60%;
    width: 2px;
    top: 20%;
    right:0px;
    transform: scale(1);
    transition: all 1s ease;
    width: 1px;
    background-color: #e5e5e5;
}


/*-
.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}
*/

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
    display: block;
    zoom:1;position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #323232;
    line-height: 60px;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
}

h4.title:before,.network-grid h1:before,.bgp-grid h2:before,.featured-services .service-item h4:before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10rem;
    background: linear-gradient(to right,#2d74ff 40%,#e5e5e5 60%);
    z-index: 1
}

.bgp-grid h2:before {
    transform: scale(0);
    transition: all 1s ease;
    height: 2px
}

.bgp-grid .feature-item-intro:hover h2:before {
    transform: scale(1);
    transition: all 1s ease;
    height: 2px
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p:not(.post-placehold) {
  line-height:30px;
  font-size: 15px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
   -webkit-line-clamp: 5; 
     hyphens: auto; 
    text-transform: none; 
    letter-spacing: 0.5px; 
    word-spacing: 1px;
}
p.lead {
  display: flex;
  flex-wrap:wrap ;
  justify-content: space-between;
  align-items: center;
      padding-top: 10px;
    padding-bottom: 10px;
}
p.lead a.lead {
  padding: 0 1.25rem;
    box-sizing: border-box;
    height: min(2.8rem, 42PX);
    border-radius: min(.6rem, 9PX);
    border: 1px solid #e5e5e5;
    font-size: min(1.2rem, 14PX);
    color:var(--nav-color);
    line-height: min(2rem, 30PX);
    margin-bottom: 10px;
    font-weight: 600;
    background-color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .3s ease-out, color .3s ease-out;
    position: relative; 
}

.i_read_more {
    width: 100%;
    position: relative;
    margin-top: auto;
    line-height: 60px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    border: 1px solid rgba(34,34,34,8%);
    text-align: center;
    cursor: pointer;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    pointer:none;
}

.i_read_more:hover {
    border: 1px solid rgba(34,34,34,8%);
    background-color: var(--accent-color);
    color: #fff;
}

.i_read_more:hover svg {
    fill: #fff
}
/*-
.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}
*/
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

.list .post:nth-child(even) {
  background-color: rgba(255,255,255,1);;
}

.list .post:nth-child(odd) {
  background-color: rgba(255,255,255,0.8);
}
div.post {
  box-shadow: var(--theme-box-shadow-light);
  position: relative;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  border:1px solid var(--theme-border);
  box-sizing: border-box;
    cursor: pointer;
  width:100%;

}

/*--------------------------------------------------------------
# posts Section
--------------------------------------------------------------*/

div.post-inner{
    position: relative;
    display: flex;
    flex-flow: row wrap;
    width:100%;
}

div.post a{
    text-decoration: none;
    word-break: break-all;
}

.post-title,.post-meta{
  width:100%;
}
.blog .col-lg-4{
  margin-top: 20px;
  margin-bottom: 20px;
}
.post-placehold{
    text-align: center;
    align-items: center;
}
.post-title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width:100%;
    position: relative;    

}

.post-title a:after {
    content: " ";
    position: absolute;
    top: 60px;
    left: 0px;
    height: 2px;
    width:100%;
    background:linear-gradient(to right,var(--accent-color) 20%,  var(--border-color) 60%);
    z-index: 1;
}
.post-banner {
  max-height: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    letter-spacing: 1rem;
    color: #fff;
    border:1px solid transparent;
    filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
    -moz-background-size: cover;
    background-size: cover;
}
.post-image,.post-placehold {
    position: relative;
    overflow:hidden;
    width:100%;
    height:100px;
}
.post-placehold{
  background: rgba(0,0,0,0.3);
  color:#fff;
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
    line-height: 100%;

}

.post-sum,.post-sum a,.post-sum span{
  color:#666; word-break: break-all;
}
.post-sum:before{
    content: "";
    left: -20px;
    width: 1px;
    height: 100%;
    position: absolute;
    background: #e5e5e5;
    transition: background .3s;
}
.post-sum span,.post-sum{
  text-indent: 2rem;
}
.post-sum span{
  min-height: 220px;
  margin-bottom: 20px;
}
 .post h1,.blog h1{
    position: relative;
    width: 100%;
    overflow: hidden;
  }
.blog h1{
  font-size: 24px;
    position: relative;
    line-height: 3rem;
    font-weight: 700;
    word-wrap: break-word;
    word-break: break-word;
    margin-bottom: 12px;
}
.col-title {
  padding-left: 20px;
}
.blog h1:before {
    content: "";
    width: 100%;
    left: 0;
    height: 1px;
    position: absolute;
    top: 60px;
    background: #e5e5e5;
    transition: background .3s
}

.blog h1.title:before {
    height: 80%;
    width: 4px;
    left: 0px;
    top: 10%;
    background: var(--accent-color);
}
.blog .post-entry {
  width: 100%;
    position: relative;
}
.content h2{
  font-size: 1.25rem;
}
.blog table {
    border-collapse: collapse;
    table-layout: auto;
    width: 100%;
    font-size: .875rem;
    margin-top: 1rem
}

.blog table thead {
    text-align: left;
    background-color: var(---border-color)
}

.blog table thead th {
    border-color: var(--border-color)
}

.blog table caption {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1.125rem;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: var(--border-color);
    text-align: right
}

.blog table td,.blog table th {
    display: table-cell;
    word-wrap: break-word;
    padding: .75rem 1rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid var(--border-color);
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    border-style: solid
}

.blog table td p:first-child,.blog table th p:first-child {
    margin-top: 0
}

.blog img {
    border: 0
}

.blog img,.blog video {
    max-width: 100%;
    height: auto;
    display: inline-block
}

.blog td img {
    max-width: none
}

.blog b,.blog strong {
    font-weight: 600
}

.blog small,.blog figcaption {
    font-size: 90%
}

.blog figure {
    display: block;
    overflow: hidden;
    border: 1px solid transparent
}

.blog figure img {
    display: block;
    max-width: none;
    touch-action: none;
    transition: opacity .5s ease-in .3s;
    margin-bottom: .5rem;
    line-height: 1
}

.blog figure figcaption {
    font-size: 90%;
    color: #6c757d
}

.blog figure figcaption * {
    font-size: 1rem;
    font-weight: 400!important
}


.blog .toc {

  position: sticky;          
  top: 1.5rem;
  max-height: calc(100vh - 3rem);
  overflow: auto;
  padding-left:10px ;
  padding-right: 10px;
}


.blog .toc ul,.blog .toc ol{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.blog .toc li{
  margin: 0;
  list-style: none;
}

.blog .toc a{
  display: block;
  padding: .375rem .5rem;
  border-radius: var(--bs-border-radius, .375rem);
  color: var(--bs-body-color, #212529);
  text-decoration: none;
  line-height: 1.25;
}
.blog .toc a:hover{
  background: var(--bs-tertiary-bg, #f8f9fa);
  text-decoration: none;
}

.blog .toc ul ul{
  padding-left: .75rem;
  margin-left: .25rem;
}
.blog .toc ul ul a{
  font-size: .92rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
}
.blog .toc ul ul ul a{
  font-size: .88rem;
}

.blog .toc a.active{
  background: var(--bs-primary-bg-subtle, #e7f1ff);
  color: var(--bs-primary-text, #0a58ca);
  font-weight: 600;
}

.blog .toc.toc--dense a{ padding: .25rem .4rem; }
.blog .toc.toc--dense .toc-title{ margin-bottom: .25rem; }
.blog .toc.toc--outline{
  position: sticky; top: 1.5rem; max-height: calc(100vh - 3rem); overflow: auto;
  padding:.75rem; border:1px solid #dee2e6; border-radius:.75rem; background:#fff;
}
.blog .toc .toc-title{ font-size:.8rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:#6c757d; margin:0 0 .5rem; }

.blog .toc nav{ margin:0; }
.blog .toc nav > ol{ padding-left:10px; margin:0; }
.blog .toc nav ol ol{ list-style: none; padding-left:10px; margin:0; border-left: 1px solid #e5e5e5; } /* 子级装饰线 */

.blog .toc nav li{ position: relative;}
.blog .toc nav a{
  display:block; margin-left:15px ; text-decoration:none; color:#111827; line-height:30px;
}
.blog .toc nav > :is(ol,ul) > li > a,.blog .toc nav > :is(ol,ul) > li > :is(ol,ul) > li > a,.blog .toc nav :is(ol,ul) :is(ol,ul) :is(ol,ul) > li > a { padding-left:20px }

.blog .toc nav li{ position: relative;}
.blog .toc nav a:hover{ background:#f8f9fa; }

.blog .toc nav ol ol{ display:none; }


.blog .toc .toc-toggle{
  position:absolute;  left: 0px;
    top: 2px; border:0; background:transparent; cursor:pointer;
  width:32px; height:32px; line-height:30px; text-align:center; font-size:24px; padding:0;
  box-shadow: none !important;
}
.blog .toc li.has-children > .toc-toggle::before{ content:"▸"; display:inline-block; transition: transform .2s; }
.blog .toc li.is-open > .toc-toggle::before{ transform: rotate(90deg); }

.blog .toc li.is-open > ol{ display:block; }

@supports(selector(:has(*))){
  .blog .toc li:has(a.active) > ol{ display:block; }
  .blog .toc li:has(li a.active) > .toc-toggle::before{ transform: rotate(90deg); }
}

 .post h2.item-title:before {
    content: "";
    width: 100%;
    left: 0;
    height:1px;
    position: absolute;
    top: 60px;
    background:  var(--border-color)；
    transition: background .3s;
  }
.blog .post-info {
    color: var(--default-color);
    font-size: .875rem;
    width: 100%
}
.blog .post-info span,.meta span {
    display: inline-flex;
    vertical-align: middle;
    align-items: center
}

.blog .post-info svg,.meta svg {
    height: 16px
}
.content {
  padding: 20px;
  position: relative;
}
.about-img {
  display: flex;
  boder:1px solid var(--border-color);
  align-items: center;
  position: relative;
  flex-wrap: wrap;

}
.content h1:after{
     content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 25px;
    margin-left: 10px;
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: rgba(229, 229, 229, 0.9);


}
.col-content {position: relative;}
.about-img img{object-fit: cover;width: 100%;height: auto;position: relative;padding: 20px;border:var(--border-color) 1px solid;  transform: scale(1) perspective(1040px) rotateY(-18deg) rotateX(0) rotate(0);
}
.about-img img:nth-child(odd){
  transform: scale(1) perspective(1040px) rotateY(18deg) rotateX(0) rotate(0);

}
ul.feature-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.5rem;               
    list-style: none;
    padding: 2rem 0;
    margin: 0 auto;
}
ul.feature-icon li {
  align-items: center;
  justify-content: center;
  list-style: none;
  max-width: 120px;

}
ul.feature-icon li img{
  max-width: 120px;
  width: min(7.2rem, 108PX);
}
.img-fluid,.hero-icon,ul.feature-icon li img {
  filter: saturate(1.2) brightness(0.9);
  transition: ease-in-out 0.3s;
  animation: float 4s ease-in-out infinite;
  object-fit: contain;
  position: relative;

}
.img-fluid:hover,.hero-icon:hover,ul.feature-icon li img:hover {
  filter: saturate(1.5) brightness(1);}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.img-fluid {
  border-radius: 8px;
}
a.badge {
  line-height: 40px;

}
.hero a.badge {
    padding: 6px 16px;           
    border: 1px solid #2d74ff;    
    background: transparent;      
    color: #fff;
    border-radius: 10px;          
    transition: all 0.3s ease;    
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero a.badge:hover {
    background: #2d74ff;           
    color: #fff !important;
    transform: translateY(-2px);   
    box-shadow: 0 4px 12px rgba(45, 116, 255, 0.3); 
}
@media (max-width: 375px){
  .hero a.badge {
    display: none;
  }
}
.runtimes-list {
    margin: 10px;
    padding: 10px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}
.runtimes-list li img {
    width: 60px;
    height: 60px;
    filter: saturate(1.2) brightness(0.9);
  transition: ease-in-out 0.3s;
  animation: float 4s ease-in-out infinite;
}

.why,.bgp,.bgp-header,.dia,.friends,.is-flex,.friends ol {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 20px;
    border: 1px solid var(--theme-border);
    position: relative;
    border-top: transparent;
    border-bottom: transparent;
    background-color: var(--theme-background);
    background: url(/images/hero-background.png)no-repeat;
    background-size: 1300px 450px;
    background-position: 50%
}

.bgp,.bgp-header,.is-flex,.friends,.friends ol {
    background-image: none
}

.is-flex,.friends ol {
    border: none
}

.dia {
    background: #fff
}

.bgp-header {
    height: 230px;
    padding: 0;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden
}

.friends {
    background-color: #fff;
    border: none;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,8%);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,8%);
    -ms-box-shadow: 0 0 1px rgba(0,0,0,8%);
    -o-box-shadow: 0 0 1px rgba(0,0,0,8%);
    box-shadow: 0 0 1px rgba(0,0,0,8%)
}

.friends h1 {
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 2rem;
    color: #999
}

.position-absolute {
    position: absolute!important
}

.green {
    background-color: #1ee8a9;
    width: 2.1875rem;
    height: 2.3125rem;
    transform: skew(0,-20deg)
}

.join {
    border-bottom: #e5e5e5 1px solid
}

.grey {
    background-color: #f4f7fc;
    width: 5.9375rem;
    height: 5.25rem;
    transform: skew(0,-20deg)
}

.blue {
    background-color: #0facf3;
    width: 2.3125rem;
    height: 2.0625rem;
    transform: skew(0,-20deg)
}

.friends ol {
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 99
}

.friends li {
    margin: 0;
    padding: 0;
    width: 33.3%;
    list-style: none;
    text-align: center;
    line-height: 40px
}

.friends canvas#contactCanvas {
    position: relative;
    z-index: 99;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px
}

.theme-dark .why {
    background-image: none
}

.theme-dark .why-features .feature-title {
    background: linear-gradient(to bottom right,#171717 49%,transparent 51%)
}

.theme-dark .dia,.theme-dark .bgp,.theme-dark .friends {
    background: 0 0
}

.theme-dark .green,.theme-dark .blue,.theme-dark .grey {
    background: rgba(255,255,255,.2)
}

.theme-dark .logo-c {
    fill: rgba(255,255,255,.62)
}

.why-features {
    background: url(/images/why-banner.jpg)50% 0 no-repeat var(--theme-background);
    position: relative;
    background-size: cover;
    border: 1px solid var(--theme-border);
    position: relative;
    border-top: transparent;
    border-bottom: transparent;
    width: 100%;
    overflow: hidden
}

.feature-title {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    background: linear-gradient(to bottom right,#f4f4f4 49%,transparent 51%)
}

.feature-grid {
    margin-top: 40vh;
    background: var(--theme-background);
    padding: 20px
}

.why-title {
    height: 40px;
    line-height: 40px;
    font-size: 1.5em;
    font-style: normal;
    font-weight: 200;
    color: #5a5c60;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    letter-spacing: 0.2rem;

}

.why-title span {
    display: inline-block;
    position: relative;
    width: 100%;
    overflow: hidden
}

.enable {
    width: 100%;
    left: 0;
    top: 40px;
    position: absolute;
    height: 38vh;
    font-size: 38px;
    font-style: normal;
    font-weight: 200;
    color: #bbbcbf;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center
}

.why-title span:after,span.feature:after {
    content: '';
    position: absolute;
    transform: translateY(-50%);
    top: 20px;
    margin-left: 10px;
    width: 100%;
    height: 1px;
    display: inline-block;
    background-color: #e5e5e5
}

span.feature:after {
    width: 100px
}

.u-tt {
    width: 100%;
    font-size: 1.2em;
    color: #252626;
    margin: 0 0 20px;
    height: 42px;
    display: block;
    zoom:1;position: relative;
    clear: both
}

.list-group--collapse {
    border: none;
    max-width: 588px
}

.list-group--collapse .list-group__item {
    position: relative;
    flex-direction: column;
    margin-bottom: 16px;
    border: 1px solid #d6d9e2;
    padding: 20px 36px 20px 32px;
    transition: box-shadow .3s,border .3s;
    cursor: pointer
}

.list-group--collapse .list-group__item:last-child {
    margin-bottom: 0
}

.list-group--collapse .list-group__item:active,.list-group--collapse .list-group__item:focus,.list-group--collapse .list-group__item:hover {
    border-color: #2854f4;
    background: none
}

.list-group--collapse .list-group__item.is-active {
    box-shadow: 0 16px 56px 6px rgba(0,0,0,.08);
    border-color: #fff;
    transition: box-shadow .3s,border .3s
}

.list-group--collapse .list-group__item.is-active:after {
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 2px;
    background: #2854f4;
    left: -1px;
    top: -1px;
    bottom: -1px
}

.list-group--collapse .list-group__content {
    max-width: 85%;
    display: none;
    margin-top: 0;
    padding: 6px 0 8px 40px
}

.list-group--collapse .list-group__content p {
    margin-bottom: 0;
    line-height: 30px
}

.list-group--collapse .top__title {
    margin-bottom: 0!important;
    margin-top: 0!important;
    transition: .45s;
    position: relative
}

.list-group--collapse .top__title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    transform: rotate(180deg);
    background-image: url(/_images/angle-top.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px
}

.list-group--collapse *+.top__title {
    margin-left: 22px
}

.list-group--collapse .top__icon {
    display: flex
}

.list-group--collapse .list-group__item.is-active .top__title:before {
    transform: rotate(0deg)
}

.list-group--icon {
    overflow: hidden
}

.list-group--icon .list-group__item {
    box-shadow: none;
    position: relative
}

.list-group--icon .list-group__item:not(.collapsed) {
    box-shadow: none
}

.list-group--icon .list-group__icon {
    position: absolute;
    right: 8px;
    top: -48px;
    width: 152px;
    height: 152px;
    z-index: -1
}

@media (min-width: 1012px) {
    .list-group.is-animated .list-group__icon {
        opacity:0
    }
}

@media (max-width: 1387px) {
    .list-group--collapse .list-group__top .top__title:before {
        top:2px;
        right: -2px
    }

    .list-group--collapse .list-group__content {
        padding: 16px 0 8px;
        max-width: 100%
    }
}

@media (max-width: 1011px) {
    .list-group--collapse {
        max-width:100%
    }

    .list-group--collapse .list-group__item {
        align-items: flex-start
    }

    .list-group--collapse .list-group__item.is-active:after {
        width: 100.5%;
        height: 2px
    }
}

.article:not(:last-child):after,.col-content:not(:last-child):after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: var(--border-color);
    height: 100%;
    width: 1px;
    right: 0px;
    top:0;
    transform: scale(1);
    transition: all 1s ease
}
@media (min-width: 992px){
  .about-content .row.article-card.post.single:nth-of-type(even){
    flex-direction: row-reverse;
  }
}

.blog-banner {
    background: url(/img/blog-banner.jpg) no-repeat;
    height: 60vh;

}
.blog{
  margin-top:0px;
  position: relative;
  scroll-margin-top:0px;
  padding:0 ;
}
.breadcrumb-nav{border: 1px solid var(--border-color)；position: relative;width: 100%;display: block;
}
.breadcrumb {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: center;
    font-size:1.25rem;
    line-height: 60px;
    margin-bottom:0px;

}

.crumb-nav {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: center;
    font-size: .875rem
}

.crumb-nav a,.crumb-nav a:hover {
    text-decoration: none;
    color: #323232
}

.crumb-nav a:hover:visited {
    color: var(--theme-primary-base)
}

.crumb-nav a:after {
    display: inline;
    margin: 0 6px;
    color: var(--theme-secondary-base)
}

.crumb-nav a:not(:last-of-type):after {
    content: '/'
}

.highlight .code-helper {
    box-sizing: content-box;
    background-color: var(--theme-body-background-dark);
    color: #323232;
    display: flex;
    flex-direction: row;
    font-size: .8rem;
    border: 1px solid var(--theme-border);
    border-bottom: 0;
    margin-top: 16px;
    min-height: 30px
}

.highlight .code-helper span.lang {
    padding: 2px 16px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    line-height: normal;
    font-family: monospace
}

.highlight .code-helper button {
    padding: 0 4px;
    background-color: transparent;
    border: 0 solid var(--theme-border);
    border-left-width: 1px;
    color: #323232;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: normal;
    transition: opacity .5s ease-in-out
}

.highlight .code-helper button:hover {
    background-color: var(--theme-code-highlight-background)
}

.highlight .code-helper button svg {
    width: 16px;
    height: 16px;
    margin-right: 4px
}

.highlight pre {
    font-size: .875rem;
    overflow: auto;
    border: 1px solid var(--theme-border);
    background-color: var(--theme-code-highlight-background);
    padding: 1rem;
    margin: 1rem 0 0;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    tab-size: 4;
    hyphens: none
}

.highlight pre>code {
    position: relative;
    border: 0;
    padding: 0;
    min-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    background-color: inherit;
    color: inherit;
    font-family: inherit;
    line-height: 1.5;
    padding: inherit;
    -webkit-text-size-adjust: 100%;
}

.highlight .code-helper+pre {
    margin: 0
}

.highlight .code-helper i {
    margin-right: .5em
}

.highlight .chroma table {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--theme-border);
    background-color: var(--theme-body-background-medium)
}

.highlight .chroma table td {
    padding: .5em 1em
}

.highlight .chroma td,.highlight .chroma tr {
    margin: 0;
    padding: 0
}

.highlight .chroma .lntd {
    line-height: 20px;
    border: 0
}

.highlight .chroma .lntd pre.chroma {
    margin: 0;
    padding: 0;
    min-width: 0;
    border: 0
}

.highlight>.chroma .lntd:first-child {
    width: 48px
}

#comments,.meta {
    display: block;
    position: relative;
    border-radius: 6px;
    font-size: .875rem;
    padding: .5rem 1rem;
    margin-top: 1.5rem;
    transition: height .5s ease-in,opacity .5s ease-in;
    word-wrap: break-word;
    word-break: break-word;
    border: 1px solid var(--theme-border-white-high-contrast)
}

.meta {
    color: var(--theme-text-subtle);
    outline-color: var(--theme-text-subtle);
    vertical-align: middle
}

.meta .row {
    display: block;
    margin: 0
}

.meta .row p {
    margin: 0
}

.meta span.label {
    margin-right: .5em;
    vertical-align: middle;
    font-size: .9rem
}

.meta span.label svg {
    margin-right: 4px
}

.meta .social-share {
    padding: 5px 0;
    display: flex;
    overflow-x: auto
}

.meta .social-share>* {
    display: inline-flex
}

.meta .social-share a {
    color: var(--theme-text-subtle);
    margin: auto .5em
}

.meta .social-share a:active {
    color: var(--theme-primary-base)!important
}

.meta .social-share a svg {
    fill: currentColor;
    height: 24px
}

.meta ul.tags {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 40px
}

.meta ul.tags li {
    list-style: none;
    display: inline;
    margin-right: 5px
}

.meta ul.tags li a {
    color: var(--theme-text-subtle)
}
.language-shell span{
  position: relative;
  display: inline-block;
   white-space: pre-wrap;
  word-wrap: break-word;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
      pointer-events: none;

}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.service-item ul.tags{
  display: inline-block;
  text-align: left;
  width: 100%;
  line-height: 40px;
  padding: 0;
  overflow: ellipsis;

}
.service-item ul.tags li {
  list-style: none;
   display: inline;
    margin-right: .5em;
    font-size: 13px;
    text-decoration: none;
    padding: 2px 5px 2px 5px;
    border-radius: 4px;


}
.service-item ul.tags li.hashed-tag{
      background-color: var(--border-color);

}
.service-item ul.tags li.hashed-tag:before {
    content: '#';
    opacity: .7;
    color: var(--default-color);
    margin-right: 2px;
    padding: 2px 5px 2px 5px;
    border-radius: 2px;
    background: var(--border-color);
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}
.support,.gpu-list-prices {
  padding-top: 30px;
  padding-bottom: 30px;
}
.support .col-lg-6 {
  padding: 0;
  margin: 0;
}

#content{margin: 0;}

.content-item{
  -moz-transition: opacity 1s ease-in-out, -moz-transform 1s ease-in-out;
      -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
      -ms-transition: opacity 1s ease-in-out, -ms-transform 1s ease-in-out;
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
      position: relative;
      max-width: 100%;
      background-image: linear-gradient(90deg, rgba(32, 35, 42, 0.9), rgba(6, 6, 6, 0.9));
  padding: 1rem;
  color:var(--surface-color);
  position: relative;
  padding: 1rem !important;
}

.content-item h2{color:var(--surface-color);}
.content-item p {
  line-height: 2rem;
  font-size: 15px;
  margin-bottom:1rem;
    color:#ccc;
  transition: ease-in-out 0.3s;}

.content-item ul li{
  list-style: none;
  color:#ccc;
}
.image {
    border: 0;
    display: inline-block;
    position: relative;
    height: 100%;
  object-fit: cover;
   width: 100%;

  }
 .gpu-list-prices img{
  height: 225px;

 } 

    .image[data-position] img {
      -moz-object-fit: cover;
      -webkit-object-fit: cover;
      -ms-object-fit: cover;
      object-fit: cover;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .image[data-position="top left"] img {
      -moz-object-position: top left;
      -webkit-object-position: top left;
      -ms-object-position: top left;
      object-position: top left;
    }

    .image[data-position="top"] img {
      -moz-object-position: top;
      -webkit-object-position: top;
      -ms-object-position: top;
      object-position: top;
    }

    .image[data-position="top right"] img {
      -moz-object-position: top right;
      -webkit-object-position: top right;
      -ms-object-position: top right;
      object-position: top right;
    }

    .image[data-position="right"] img {
      -moz-object-position: right;
      -webkit-object-position: right;
      -ms-object-position: right;
      object-position: right;
    }

    .image[data-position="bottom right"] img {
      -moz-object-position: bottom right;
      -webkit-object-position: bottom right;
      -ms-object-position: bottom right;
      object-position: bottom right;
    }

    .image[data-position="bottom"] img {
      -moz-object-position: bottom;
      -webkit-object-position: bottom;
      -ms-object-position: bottom;
      object-position: bottom;
    }

    .image[data-position="bottom left"] img {
      -moz-object-position: bottom left;
      -webkit-object-position: bottom left;
      -ms-object-position: bottom left;
      object-position: bottom left;
    }

    .image[data-position="left"] img {
      -moz-object-position: left;
      -webkit-object-position: left;
      -ms-object-position: left;
      object-position: left;
    }

    .image[data-position="center"] img {
      -moz-object-position: center;
      -webkit-object-position: center;
      -ms-object-position: center;
      object-position: center;
    }

    .image[data-position="25% 25%"] img {
      -moz-object-position: 25% 25%;
      -webkit-object-position: 25% 25%;
      -ms-object-position: 25% 25%;
      object-position: 25% 25%;
    }

    .image[data-position="75% 25%"] img {
      -moz-object-position: 75% 25%;
      -webkit-object-position: 75% 25%;
      -ms-object-position: 75% 25%;
      object-position: 75% 25%;
    }

    .image[data-position="75% 75%"] img {
      -moz-object-position: 75% 75%;
      -webkit-object-position: 75% 75%;
      -ms-object-position: 75% 75%;
      object-position: 75% 75%;
    }

    .image[data-position="25% 75%"] img {
      -moz-object-position: 25% 75%;
      -webkit-object-position: 25% 75%;
      -ms-object-position: 25% 75%;
      object-position: 25% 75%;
    }

    .image img {
      border-radius: 0.325rem;
      display: block;
    }

    .image.left, .image.right {
      max-width: 40%;
    }

      .image.left img, .image.right img {
        width: 100%;
      }

    .image.left {
      float: left;
      margin: 0 1.5rem 1rem 0;
      top: 0.25rem;
    }

    .image.right {
      float: right;
      margin: 0 0 1rem 1.5rem;
      top: 0.25rem;
    }

    .image.fit {
      display: block;
      margin: 0 0 2rem 0;
      width: 100%;
    }

      .image.fit img {
        width: 100%;
      }

    .image.main {
      display: block;
      margin: 0 0 3rem 0;
      width: 100%;
    }

      .image.main img {
        width: 100%;
      }

#content {
  position: relative;
  width: 100%;
  height: 100%;
}
.image:before {
      content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
      width: 100%;
  height: 100%;
    }
.gpu-list-grid {

    transition: background-color .3s ease-out;
}

.gpu-list-grid h4 {
    left: 16px;
    position: absolute;
    top: 16px;
    transition: color .3s ease-out
}
.gpu-list-grid img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;

}

.bms .bim img {
  transform: scale(1) perspective(1040px) rotateY(-18deg) rotateX(0) rotate(0);
}
.bms-menu {
  padding:30px !important;
}

.bms-section {
  padding:0;
    scroll-margin-top:0px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 3rem;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
.isotope-container {
  display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
     justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
     margin: 0 auto;
}
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
    display: flex;
  align-items: center;
  justify-content:center;
  
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom:0;
  padding:10px;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
  width: 100%;

}
.col-lg-4 .portfolio-item,.col-lg-5 .portfolio-item,.col-lg-3 .portfolio-item,.col-lg-6 .portfolio-item{

  align-items: center;
  justify-content:center;
  display: flex;
  
}
.portfolio-item,.portfolio-item-col{
  padding: 10px;
  border:1px solid #e5e5e5;
  min-height: 96px;
}
.is-middle{
  border-left: none;
  border-right: none;
}
.is-two-last {
  border-left: none !important;
}
.img-customer{
  height: 64px;
  max-width: 100%;
  max-height: 64px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
  line-height: 2rem;
  color: var(--accent-color);
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
    height: 100%;


}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 15px;
  top: -5px;
  left:0px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}
 .pricing-item p{
  height: 100%;
  position: relative;
 }
.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
.tips {
  padding-left: 20px;
  padding-right: 20px;
}
.tips h4 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  border-left: 4px solid #0078D4;
  padding-left: 8px;
}

.tips p {
  margin: 0 0 12px 0;
  text-indent: 2em; /* 缩进以模拟段落 */
}

.tips p::first-line {
  font-weight: 600;
}

.tips p code {
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: monospace;
}

.tips p strong {
  color: #d0021b;
}

.tips p:hover {
  background-color: #f9f9f9;
}

/* 适配移动端 */
@media screen and (max-width: 600px) {
  .tips {
    font-size: 13px;
    padding: 0 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.highlights .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.highlights .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.highlights .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.highlights .service-item:hover::before {
  height: 100%;
}

.highlights .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.highlights .service-item:hover .link-item i {
  transform: translateX(5px);
}

.highlights .service-item .icon {
  margin-bottom: 1.5rem;
}

.highlights .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}

.highlights .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.highlights .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlights .service-item .card-links {
  margin-top: auto;
}

.highlights .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.highlights .service-item .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.highlights .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991px) {
  .highlights .card-item {
    padding: 1.75rem;
  }

  .highlights .card-item h3 {
    font-size: 1.35rem;
  }

  .highlights .card-item .icon i {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .highlights .card-item {
    padding: 1.5rem;
  }

  .highlights .card-item h3 {
    font-size: 1.25rem;
  }

  .highlights .card-item .icon i {
    font-size: 2rem;
  }

  .highlights .card-item:hover {
    transform: translateY(-3px);
  }
}

.has-hover {
    position: relative;
    transition: top .3s ease;
    top: 0
}

.has-hover:before {
    bottom: -8px;
    height: 8px
}

.has-hover:after,
.has-hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0
}

.has-hover:after {
    display: block;
    top: 0;
    bottom: 0;
    z-index: -1;
    transition: box-shadow .3s ease;
    box-shadow: 0 4px 32px 0 rgba(10, 14, 29, .02), 0 8px 64px 0 rgba(10, 14, 29, .08);
    border-radius: 3px
}

@media (max-width:1011px) {
    .has-hover:after {
        box-shadow: 0 8px 16px 0 rgba(10, 14, 29, .02), 0 8px 40px 0 rgba(10, 14, 29, .06)
    }
}

.has-hover:active,
.has-hover:focus,
.has-hover:hover {
    top: -8px
}

.has-hover:active:after,
.has-hover:focus:after,
.has-hover:hover:after {
    box-shadow: 0 16px 40px 0 rgba(10, 14, 29, .04), 0 16px 80px 0 rgba(10, 14, 29, .16)
}

.pg-card {
  display: block;
  border: 0;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg-card:hover {
  transform: translateY(-2px);
}

.pg-card-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pg-card-hero {
  background: #1682ff;
  color: #fff;
}

.pg-card-light {
  background: #f3f3f5;
  color: #142971;
}

.pg-badge {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.pg-hero-title {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 300;
  max-width: 10ch;
}

.pg-title {
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.15;
  font-weight: 400;
}

.pg-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.96;
  max-width: 24ch;
}

.pg-link,
.pg-price,
.pg-hero-cta {
  font-size: 1.05rem;
  font-weight: 500;
}

.pg-link,
.pg-price {
  color: #1473ff;
}

.pg-card-hero .pg-hero-cta {
  color: #fff;
  font-weight: 600;
}

.pg-icon img {
  max-height: 40px;
  width: auto;
}

@media (min-width: 992px) {
  .pg-card-hero .pg-card-inner {
    min-height: 540px;
  }

  .pg-card-light .pg-card-inner {
    min-height: 260px;
  }
}

/*--------------------------------------------------------------
# AI landing (nio-style showcase)
--------------------------------------------------------------*/
.ai-landing {
  --ai-bg: #ffffff;
  --ai-bg-2: #f5f9ff;
  --ai-fg: #222222;
  --ai-muted: #5b6577;
  --ai-accent: var(--accent-color, #2d74ff);
  background: var(--ai-bg);
  color: #444444;
  overflow-x: hidden;
}
.ai-landing section { position: relative; }

/* Hero */
.ai-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background:
    linear-gradient(180deg, rgba(7,7,11,.55) 0%, rgba(7,7,11,.78) 60%, var(--ai-bg) 100%),
    radial-gradient(120% 90% at 70% 0%, rgba(45,116,255,.35) 0%, rgba(45,116,255,0) 55%),
    var(--ai-bg);
  background-size: cover;
  background-position: center;
}
.ai-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ai-accent);
  margin-bottom: 1.2rem;
}
.ai-hero__title {
  margin: 0 0 1.5rem;
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .ai-hero__title { font-size: 28px; line-height: 36px; }
}
/* product subpage hero title: concise, aligned with About */
.product-banner h1 { font-size: 36px; line-height: 44px; }
@media (max-width: 991.98px) { .product-banner h1 { font-size: 26px; line-height: 34px; } }
/* highlight strip pulled out of the hero — reuses bgp-grid styling verbatim */
.product-banner { padding-bottom: 1rem; }
/* GPU hardware model cards */
.gpu-card { background: #fff; border: 1px solid #e7eefb; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.gpu-card:hover { box-shadow: 0 10px 30px rgba(45,116,255,.10); transform: translateY(-4px); }
.gpu-card__media { height: 230px; background: #f5f9ff; padding: 20px; }
.gpu-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
/* Why WLStack page */
.why-hero h1 { font-size: 40px; line-height: 1.2; color: #222; font-weight: 700; }
@media (max-width: 991.98px) { .why-hero h1 { font-size: 30px; } }
.why-stat__value { font-size: 2.6rem; font-weight: 700; color: #2d74ff; line-height: 1; }
.why-stat__label { color: #5b6577; margin-top: .5rem; font-size: .95rem; }
.why-card { background: #fff; border: 1px solid #e7eefb; border-radius: 2px; padding: 2rem 1.75rem; transition: box-shadow .3s, transform .3s; }
.why-card:hover { box-shadow: 0 10px 30px rgba(45,116,255,.10); transform: translateY(-4px); }
.why-card__icon { width: 56px; height: 56px; border-radius: 12px; background: #eef4ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.why-card__icon i { font-size: 1.7rem; color: #2d74ff; line-height: 1; }
.why-card__title { font-size: 1.2rem; font-weight: 700; color: #222; margin: 0 0 .6rem; }
.why-card__desc { color: #5b6577; font-size: .95rem; line-height: 1.65; margin: 0; }
/* Homepage hero — carousel slide content (carousel effect unchanged) */
.hero-slide { max-width: 760px; text-align: left; position: relative; z-index: 100; padding: 1rem 0; }
.hero-slide__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.hero-tag { display: inline-block; padding: .32rem .9rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .3px; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.30); text-decoration: none; transition: background .25s, transform .25s; }
.hero-tag:hover { background: rgba(255,255,255,.28); color: #fff; transform: translateY(-1px); }
.hero .hero-slide__title { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15; color: #fff; margin: 0 0 1.1rem; letter-spacing: -.5px; }
.hero .hero-slide__desc { font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.7; color: rgba(255,255,255,.88); margin: 0 0 1.8rem; max-width: 640px; }
.hero-slide__cta { padding: .8rem 2.1rem; font-size: 1rem; font-weight: 600; border-radius: 6px; }
@media (max-width: 991.98px) { .hero .hero-slide__desc { max-width: none; } .hero-slide { padding: 0; } .carousel-inner { height: 500px; } .carousel-control-next, .carousel-control-prev { height: 500px; } }
/* Homepage hero — single-slide crossfade carousel (ported from reference design) */
.hero-carousel { position: relative; overflow: hidden; margin-top: 60px; background: #0a0e16; color: #fff; min-height: 50vh; }
@media (min-width: 768px) { .hero-carousel { min-height: 60vh; } }
@media (min-width: 1200px) { .hero-carousel { min-height: 540px; } }
.hero-carousel__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; pointer-events: none; }
.hero-carousel__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-carousel__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-carousel__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.25) 100%); }
.hero-carousel__inner { position: relative; z-index: 2; display: flex; align-items: center; width: 100%; height: 100%; min-height: inherit; padding: 0 1rem; }
.hero-carousel__content { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.hero-carousel__title { margin: 0; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.1; color: #fff; }
.hero-carousel__subtitle { margin: 1.25rem 0 0; max-width: 56ch; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; color: rgba(255,255,255,.85); }
.hero-carousel__cta { display: inline-flex; align-items: center; justify-content: center; min-width: 160px; margin-top: 2rem; padding: .8rem 1.7rem; border-radius: 12px; background: #2d74ff; color: #fff; font-weight: 500; text-decoration: none; transition: opacity .2s; }
.hero-carousel__cta:hover { opacity: .9; color: #fff; }
.hero-carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.2); color: #fff; cursor: pointer; transition: background .2s; padding: 0; }
.hero-carousel__nav span { font-size: 1.8rem; line-height: 1; }
.hero-carousel__nav:hover { background: rgba(0,0,0,.45); color: #fff; }
.hero-carousel__nav--prev { left: 16px; } .hero-carousel__nav--next { right: 16px; }
@media (min-width: 768px) { .hero-carousel__nav--prev { left: 24px; } .hero-carousel__nav--next { right: 24px; } }
/* featured card acts as slide selector */
[data-hero-card] { cursor: pointer; }
[data-hero-card].is-active { border-color: #2d74ff !important; box-shadow: 0 0 0 1px rgba(45,116,255,.25); }
/* legacy hero overrides (kept inert; class is now .hero-carousel) */
#hero.hero { min-height: 0; padding: 0; height: auto; }

/* ===== Header branding spacing + dropdown menu polish ===== */
.header .branding { padding-left: clamp(1.25rem, 3.5vw, 3rem); padding-right: clamp(1.25rem, 3.5vw, 3rem); }
.header .branding > .position-relative { padding-left: 0 !important; padding-right: 0 !important; }

/* Desktop nav dropdown menu */
@media (min-width: 1200px) {
  .navmenu .dropdown > ul.dropdown-container {
    left: 0;
    padding: 8px;
    min-width: 224px;
    border: 1px solid #eef2f9;
    border-radius: 12px;
    box-shadow: 0 18px 44px -14px rgba(16, 24, 40, .20);
  }
  .navmenu .dropdown ul.dropdown-container li.dropdown-item { min-width: 0; }
  .navmenu .dropdown ul.dropdown-container li.dropdown-item a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14.5px;
    color: var(--nav-color);
    transition: background .18s ease, color .18s ease;
  }
  .navmenu .dropdown ul.dropdown-container li.dropdown-item a:hover {
    background: #f5f9ff;
    color: var(--accent-color);
  }
  .navmenu .dropdown ul.dropdown-container li.dropdown-item:not(:last-child) { border-bottom: 0; }
  .navmenu .dropdown:hover > ul.dropdown-container { top: calc(100% + 6px); }
}

/* Language dropdown menu */
#lang-choose .dropdown-container {
  left: auto;
  right: 0;
  top: calc(100% + 8px);
  min-width: 156px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #eef2f9;
  border-radius: 12px;
  box-shadow: 0 18px 44px -14px rgba(16, 24, 40, .20);
}
#lang-choose .dropdown-container li.dropdown-item { min-width: 0; border: 0; padding: 0; }
#lang-choose .dropdown-container li.dropdown-item a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--nav-color);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
#lang-choose .dropdown-container li.dropdown-item a:hover { background: #f5f9ff; color: var(--accent-color); }

/* Console nav link — bolder icon, roomier text, hidden on tiny screens */
.console-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; letter-spacing: .2px; }
.console-link i.console { font-size: 1.25rem; padding: 0; line-height: 1; }
.console-link span { white-space: nowrap; }
@media (max-width: 575.98px) { .console-item { display: none !important; } }
/* topbar: on small screens hide news + 2nd phone, keep first phone number */
@media (max-width: 767.98px) {
  .header .topbar .contact-info i.bi-chat-square-dots { display: none !important; }
  .topbar-phone__rest { display: none !important; }
}

/* ===== Decorative square-grid pattern background (suitable section bands) ===== */
.product-banner, .ai-cta, .support-aftersales, .ai-workflows { position: relative; overflow: hidden; }
.product-banner::after, .ai-cta::after, .support-aftersales::after, .ai-workflows::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: url('/img/pattern-square.svg') repeat-x bottom center;
  background-size: auto 100%;
  opacity: .55; pointer-events: none; z-index: 0;
}
.product-banner > .container, .ai-cta > .container,
.support-aftersales > .container, .ai-workflows > .container { position: relative; z-index: 1; }

/* ===== Transport topology figure ===== */
.product-topology__frame { margin: 0;}
.product-topology__frame img, .product-topology__frame svg { display: block; width: 100%; height: auto; }

/* ===== Success story card ===== */
.success-story { width: 100%; margin: 1.5rem 0 .5rem; background: #fff; border: 1px solid #e7eefb; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -38px rgba(20,40,80,.28); }
.success-story__head { display: flex; align-items: center; border-bottom: 1px solid #eef2f9; }
.success-story__logo { flex: none; height: 68px; width: auto; max-width: 240px; object-fit: contain; padding: 1.2rem 2rem; border-right: 1px solid #eef2f9; }
.success-story__title { margin: 0; padding: 1.1rem 1.8rem; font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 800; color: #16223d; line-height: 1.25; }
.success-story__pre { color: #2d74ff; }
.success-story__main { padding: 1.9rem 2rem; border-right: 1px solid #eef2f9; }
.success-story__side { padding: 1.9rem 2rem; }
.success-story__badge { display: inline-block; font-size: .78rem; font-weight: 600; color: #2d74ff; border: 1px solid #bcd3ff; border-radius: 6px; padding: .18rem .6rem; margin-bottom: 1rem; }
.success-story__main p { color: #46506a; line-height: 1.85; margin: 0 0 1rem; }
.success-story__rule { border: 0; border-top: 1px solid #eef2f9; margin: 1.6rem 0; }
.success-story__results { list-style: none; padding: 0; margin: 0; }
.success-story__results li { display: flex; gap: .55rem; color: #46506a; line-height: 1.8; margin-bottom: .85rem; }
.success-story__results .ss-arrow { color: #2d74ff; font-weight: 700; flex: none; }
.success-story__results strong { color: #2d74ff; }
.success-story__values { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.3rem; }
.success-story__values li { display: flex; align-items: center; gap: .65rem; font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 700; color: #16223d; }
.success-story__values i { color: #2d74ff; font-size: 1.4rem; flex: none; }
@media (max-width: 991.98px) {
  .success-story__main { border-right: 0; border-bottom: 1px solid #eef2f9; }
  .success-story__head { flex-wrap: wrap; }
  .success-story__title { padding: 1rem 1.4rem; }
  .success-story__logo { padding: 1rem 1.4rem; }
}

/* ===== Storage landing — data workflows grid ===== */
.ai-workflows { background: #ffffff; padding: 5rem 0; }
.ai-workflow { background: #fff; border: 1px solid #e5e9f2; border-radius: 14px; padding: 1.6rem 1.5rem; height: 100%; transition: box-shadow .25s, transform .25s, border-color .25s; }
.ai-workflow:hover { box-shadow: 0 16px 40px -20px rgba(45,116,255,.35); transform: translateY(-4px); border-color: #cfe0ff; }
.ai-workflow__icon { width: 48px; height: 48px; border-radius: 12px; background: #eef4ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ai-workflow__icon i { font-size: 1.5rem; color: #2d74ff; line-height: 1; }
.ai-workflow__title { font-size: 1.05rem; font-weight: 700; color: #1c2334; margin: 0 0 .5rem; }
.ai-workflow__desc { font-size: .92rem; line-height: 1.6; color: #5b6577; margin: 0; }

/* ===== Login page ===== */
.login-page { min-height: calc(100vh - 220px); display: flex; align-items: center; justify-content: center; padding: 4rem 1rem; background: #f5f9ff; }
.login-card { display: flex; width: 100%; max-width: 940px; background: #fff; border: 1px solid #e7eefb; border-radius: 20px; overflow: hidden; box-shadow: 0 36px 90px -46px rgba(20, 40, 80, .40); }
.login-brand { flex: 0 0 42%; max-width: 42%; padding: 3rem 2.5rem; color: #fff; background: linear-gradient(160deg, #2d74ff 0%, #1b51c9 100%); display: flex; flex-direction: column; }
.login-brand__title { font-size: 1.55rem; font-weight: 700; margin: .5rem 0 .75rem; color: #fff; }
.login-brand__text { font-size: .95rem; line-height: 1.7; color: rgba(255, 255, 255, .85); margin: 0 0 1.75rem; }
.login-brand__list { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: .8rem; }
.login-brand__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: rgba(255, 255, 255, .92); }
.login-brand__list i { font-size: 1.1rem; line-height: 1.5; }
.login-form { flex: 1 1 58%; padding: 3rem 2.75rem; }
.login-form__title { font-size: 1.7rem; font-weight: 800; color: #16223d; margin: 0 0 .5rem; }
.login-form__sub { font-size: .95rem; line-height: 1.6; color: #5b6577; margin: 0 0 1.75rem; }
.login-label { display: block; font-size: .85rem; font-weight: 600; color: #46506a; margin: 0 0 .4rem; }
.login-field { display: flex; align-items: center; border: 1px solid #dbe3f0; border-radius: 10px; padding: 0 .9rem; margin-bottom: 1.1rem; transition: border-color .18s, box-shadow .18s; }
.login-field i { color: #9aa4b5; font-size: 1.05rem; }
.login-field input { flex: 1; border: 0; outline: 0; background: transparent; padding: .8rem .6rem; font-size: .95rem; color: #16223d; }
.login-field:focus-within { border-color: #2d74ff; box-shadow: 0 0 0 3px rgba(45, 116, 255, .12); }
.login-row { display: flex; align-items: center; justify-content: space-between; margin: 0 0 1.3rem; font-size: .88rem; }
.login-check { display: inline-flex; align-items: center; gap: .45rem; color: #5b6577; margin: 0; cursor: pointer; }
.login-forgot { color: #2d74ff; text-decoration: none; }
.login-forgot:hover { text-decoration: underline; }
.login-submit { width: 100%; height: 48px; padding: 0; border: 0; border-radius: 10px; background: #2d74ff; color: #fff; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background .2s, transform .2s; }
.login-submit:hover { background: #205fe0; color: #fff; transform: translateY(-1px); }
.login-notice { margin: 1.1rem 0 0; padding: .7rem .9rem; border-radius: 8px; background: #fff5f5; border: 1px solid #f6cccc; color: #c0392b; font-size: .9rem; line-height: 1.55; text-align: center; }
.login-foot { margin: 1.5rem 0 0; font-size: .9rem; color: #5b6577; text-align: center; }
.login-foot a { color: #2d74ff; text-decoration: none; font-weight: 600; }
.login-foot a:hover { text-decoration: underline; }

/* ===== OS distributions / pre-installed apps tabbed grid ===== */
.os-apps__nav { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; gap: 2.25rem; border-bottom: 1px solid #e7eefb; }
.os-apps__tab { background: none; border: 0; padding: 0 0 .85rem; font-size: 1.15rem; font-weight: 700; color: #9aa4b5; position: relative; cursor: pointer; transition: color .18s; }
.os-apps__tab:hover { color: #46506a; }
.os-apps__tab.active { color: #16223d; }
.os-apps__tab.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: #2d74ff; border-radius: 3px 3px 0 0; }
.os-card { width: 100%; border: 1px solid #e7eefb; border-radius: 12px; padding: 2.2rem 1rem; text-align: center; background: #fff; transition: box-shadow .25s, transform .25s, border-color .25s; }
.os-card:hover { box-shadow: 0 16px 40px -22px rgba(45,116,255,.4); transform: translateY(-3px); border-color: #cfe0ff; }
.os-card__icon { height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.os-card__icon img { max-height: 48px; max-width: 48px; width: auto; }
.os-card__name { font-size: 1rem; color: #46506a; }

/* ===== Support: pre-sales / delivery / after-sales ===== */
.presale-step { text-align: center; }
.presale-step__chevron {
  position: relative; height: 92px; display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; font-weight: 700; color: #5b5be0;
  background: #efeefe; border: 1px solid #d9d7f7; margin-bottom: 1.1rem;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 12% 50%);
}
.presale-step__chevron.is-blue { color: #2d74ff; background: #e9f3fc; border-color: #cfe3f6; }
.presale-step__title { font-size: 1.1rem; font-weight: 700; color: #1c2334; margin: 0 0 .5rem; }
.presale-step__desc { font-size: .9rem; line-height: 1.65; color: #5b6577; margin: 0; padding: 0 .4rem; }
.delivery-card { background: #fff; border: 1px solid #e7eefb; border-radius: 16px; padding: 2rem 1.75rem; height: 100%; transition: box-shadow .25s, transform .25s; }
.delivery-card:hover { box-shadow: 0 18px 44px -24px rgba(45,116,255,.35); transform: translateY(-3px); }
.support-delivery .col-md-4:nth-child(2) .delivery-card { border-color: #cfe3f6; }
.delivery-card__icon { width: 52px; height: 52px; border-radius: 13px; background: #eef4ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.delivery-card__icon i { font-size: 1.55rem; color: #2d74ff; line-height: 1; }
.support-delivery .col-md-4:nth-child(2) .delivery-card__icon { background: #e9f3fc; }
.delivery-card__title { font-size: 1.2rem; font-weight: 700; color: #1c2334; margin: 0 0 .8rem; }
.delivery-card__desc { font-size: .95rem; line-height: 1.75; color: #5b6577; margin: 0; }
.aftersale-item__num { font-size: 1rem; font-weight: 700; color: #2d74ff; margin-bottom: .55rem; }
.aftersale-item__title { font-size: 1.15rem; font-weight: 700; color: #1c2334; margin: 0 0 .6rem; }
.aftersale-item__desc { font-size: .95rem; line-height: 1.75; color: #5b6577; margin: 0; }
@media (max-width: 575.98px) { .presale-step__chevron { height: 76px; font-size: 1.5rem; } }
@media (max-width: 767.98px) {
  .login-card { flex-direction: column; max-width: 460px; }
  .login-brand { flex-basis: auto; max-width: 100%; padding: 2.25rem 2rem; }
  .login-brand__list { display: none; }
  .login-form { padding: 2.25rem 2rem; }
}
#hero .carousel-inner { height: 440px; }
#hero .carousel-item { display: none; height: 440px; }
#hero .carousel-item.active,
#hero .carousel-item-next,
#hero .carousel-item-prev {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#hero .carousel-item > .container { width: 100%; }
#hero .carousel-control-next, #hero .carousel-control-prev { height: 440px; }
@media (max-width: 991.98px) {
  #hero .carousel-inner, #hero .carousel-item,
  #hero .carousel-control-next, #hero .carousel-control-prev { height: 520px; }
}
.gpu-card__body { padding: 1.1rem 1.25rem 1.4rem; }
.gpu-card__name { font-size: 1.15rem; font-weight: 700; color: #222; margin: 0 0 .4rem; }
.gpu-card__desc { color: #5b6577; font-size: .9rem; line-height: 1.5; margin: 0 0 .8rem; }
.gpu-card__specs { list-style: none; padding: 0; margin: 0; }
.gpu-card__specs li { position: relative; padding-left: 1.1rem; color: #444; font-size: .85rem; line-height: 1.7; }
.gpu-card__specs li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: #2d74ff; }
.ai-hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  color: rgba(255,255,255,.85);
  max-width: 46ch;
  margin-bottom: 2.4rem;
}
.ai-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  background: var(--ai-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 40px -12px rgba(45,116,255,.7);
}
.ai-hero__cta:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 50px -12px rgba(45,116,255,.85); }

/* Metrics */
.ai-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ai-metric__value {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.ai-metric__label { color: rgba(255,255,255,.78); font-size: .95rem; margin-top: .35rem; }

/* Showcase rows */
.ai-showcase { padding: 6rem 0; }
.ai-showcase:nth-of-type(even) { background: var(--ai-bg-2); }
.ai-showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ai-showcase__row.is-reverse .ai-showcase__media { order: 2; }
.ai-showcase__eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ai-accent);
  margin-bottom: 1rem;
}
.ai-showcase__title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.ai-showcase__desc { color: var(--ai-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.6rem; }
.ai-showcase__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ai-showcase__bullets li {
  position: relative;
  padding-left: 1.6rem;
  color: #e7ebf5;
}
.ai-showcase__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--ai-accent);
  box-shadow: 0 0 12px rgba(45,116,255,.8);
}
.ai-showcase__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border: 0;
  background: transparent;
}
.ai-showcase__icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.5));
}

/* Product entries */
.ai-products { padding: 6rem 0; background: #f5f9ff; }
.ai-products__head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.ai-products__head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; color: #222222; }
.ai-products__head p { color: var(--ai-muted); }
.ai-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #444444;
  box-shadow: 0 10px 30px -20px rgba(20,40,80,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ai-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,116,255,.55);
  box-shadow: 0 22px 48px -24px rgba(20,40,80,.28);
  color: #444444;
}
.ai-product-card .ai-tag { align-self: flex-start; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ai-accent); border: 1px solid rgba(45,116,255,.4); border-radius: 999px; padding: .2rem .65rem; margin-bottom: 1rem; }
.ai-product-card h3 { font-size: 1.4rem; font-weight: 700; color: #222222; margin-bottom: .8rem; }
.ai-product-card p { color: var(--ai-muted); flex: 1 1 auto; margin-bottom: 1.4rem; }
.ai-product-card .ai-product-link { color: var(--ai-accent); font-weight: 600; }

/* CTA band */
.ai-cta {
  padding: 6rem 0;
  text-align: center;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(45,116,255,.12) 0%, rgba(45,116,255,0) 60%),
    #ffffff;
}
.ai-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #222222; margin-bottom: 1.2rem; }
.ai-cta p { color: var(--ai-muted); max-width: 40rem; margin: 0 auto 2.2rem; font-size: 1.15rem; }

@media (max-width: 991.98px) {
  .ai-metrics { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .ai-showcase { padding: 4rem 0; }
  .ai-showcase__row { grid-template-columns: 1fr; gap: 2rem; }
  .ai-showcase__row.is-reverse .ai-showcase__media { order: 0; }
  .ai-hero { min-height: 80vh; padding: 7rem 0 4rem; }
}

/*--------------------------------------------------------------
# Compute landing (zenlayer-style, technical/dark)
--------------------------------------------------------------*/
.cmp-landing {
  --cmp-bg: #0a0c10;
  --cmp-bg-2: #0f131a;
  --cmp-fg: #eef2f8;
  --cmp-muted: #9aa6ba;
  --cmp-accent: var(--accent-color, #2d74ff);
  --cmp-term: #4ade80;
  --cmp-border: rgba(255,255,255,.09);
  --cmp-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  background: var(--cmp-bg);
  color: var(--cmp-fg);
  overflow-x: hidden;
}
.cmp-landing section { position: relative; }
.cmp-eyebrow {
  text-transform: uppercase; letter-spacing: .24em; font-size: .78rem;
  font-weight: 600; color: var(--cmp-accent); margin-bottom: 1rem;
}

/* Hero */
.cmp-hero {
  padding: 8rem 0 5rem;
  background:
    radial-gradient(110% 80% at 85% 0%, rgba(45,116,255,.22) 0%, rgba(45,116,255,0) 55%),
    var(--cmp-bg);
}
.cmp-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.cmp-hero__title {
  font-weight: 800; line-height: 1.06; letter-spacing: -.02em;
  font-size: clamp(2.3rem, 5vw, 4.2rem); color: #fff; margin-bottom: 1.4rem;
}
.cmp-hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--cmp-muted); max-width: 42ch; margin-bottom: 2.2rem; }
.cmp-hero__img { width: 100%; border-radius: 14px; }
.cmp-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.9rem; border-radius: 10px; background: var(--cmp-accent);
  color: #fff; font-weight: 600; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 40px -14px rgba(45,116,255,.75);
}
.cmp-btn:hover { transform: translateY(-2px); color: #fff; }

/* Terminal accent panel */
.cmp-terminal {
  background: #070a0e; border: 1px solid var(--cmp-border); border-radius: 14px;
  font-family: var(--cmp-mono); font-size: .92rem; overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.9);
}
.cmp-terminal__bar { display: flex; gap: .45rem; padding: .8rem 1rem; background: #0d1117; border-bottom: 1px solid var(--cmp-border); }
.cmp-terminal__bar span { width: .7rem; height: .7rem; border-radius: 50%; background: #2a3140; }
.cmp-terminal__bar span:nth-child(1){ background:#ff5f56; } .cmp-terminal__bar span:nth-child(2){ background:#ffbd2e; } .cmp-terminal__bar span:nth-child(3){ background:#27c93f; }
.cmp-terminal__body { padding: 1.2rem 1.3rem; color: var(--cmp-term); line-height: 1.8; white-space: pre; overflow-x: auto; }
.cmp-terminal__body .c-key { color: #9aa6ba; }
.cmp-terminal__body .c-val { color: #eef2f8; }

/* Metrics */
.cmp-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 3rem 0; border-top: 1px solid var(--cmp-border); border-bottom: 1px solid var(--cmp-border); }
.cmp-metric__value { font-size: clamp(1.7rem, 3.2vw, 2.7rem); font-weight: 800; color: #fff; font-family: var(--cmp-mono); }
.cmp-metric__label { color: var(--cmp-muted); font-size: .92rem; margin-top: .3rem; }

/* Section scaffolding */
.cmp-section { padding: 5.5rem 0; }
.cmp-section:nth-of-type(even) { background: var(--cmp-bg-2); }
.cmp-section__head { max-width: 46rem; margin-bottom: 3rem; }
.cmp-section__title { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.01em; }
.cmp-section__sub { color: var(--cmp-muted); font-size: 1.08rem; margin-top: .6rem; }

/* Product grid */
.cmp-product-card {
  display: flex; flex-direction: column; height: 100%; padding: 1.8rem;
  border-radius: 14px; border: 1px solid var(--cmp-border);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  text-decoration: none; color: var(--cmp-fg);
  transition: transform .22s ease, border-color .22s ease;
}
.cmp-product-card:hover { transform: translateY(-5px); border-color: rgba(45,116,255,.55); color: var(--cmp-fg); }
.cmp-product-card .cmp-tag { align-self: flex-start; font-family: var(--cmp-mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--cmp-accent); border: 1px solid rgba(45,116,255,.4); border-radius: 999px; padding: .2rem .6rem; margin-bottom: 1rem; }
.cmp-product-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.cmp-product-card p { color: var(--cmp-muted); flex: 1 1 auto; margin-bottom: 1.1rem; font-size: .98rem; }
.cmp-product-card .cmp-link { color: var(--cmp-accent); font-weight: 600; font-size: .95rem; }

/* Numbered feature callouts */
.cmp-feature { display: grid; grid-template-columns: 5rem 1fr; gap: 1.5rem; padding: 1.8rem 0; border-top: 1px solid var(--cmp-border); }
.cmp-feature__num { font-family: var(--cmp-mono); font-size: 1.6rem; font-weight: 700; color: var(--cmp-accent); }
.cmp-feature__title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.cmp-feature__desc { color: var(--cmp-muted); max-width: 60ch; }

/* Use cases */
.cmp-usecase { height: 100%; padding: 1.8rem; border-radius: 14px; border: 1px solid var(--cmp-border); background: rgba(255,255,255,.02); }
.cmp-usecase i { font-size: 2rem; color: var(--cmp-accent); display: block; margin-bottom: 1rem; }
.cmp-usecase h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.cmp-usecase p { color: var(--cmp-muted); margin: 0; }

/* CTA */
.cmp-cta { padding: 6rem 0; text-align: center; background: radial-gradient(80% 140% at 50% 0%, rgba(45,116,255,.25), rgba(45,116,255,0) 60%), var(--cmp-bg-2); }
.cmp-cta h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cmp-cta p { color: var(--cmp-muted); max-width: 40rem; margin: 0 auto 2rem; font-size: 1.1rem; }

@media (max-width: 991.98px) {
  .cmp-hero { padding: 7rem 0 3rem; }
  .cmp-hero__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .cmp-metrics { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .cmp-section { padding: 4rem 0; }
  .cmp-feature { grid-template-columns: 3.2rem 1fr; gap: 1rem; }
}

/*--------------------------------------------------------------
# Product single — elegant tabs & FAQ
--------------------------------------------------------------*/
.py-lg-6 { }
@media (min-width: 992px) { .py-lg-6 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; } }

.product-section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: #1c2334;
}

/* Tabs — horizontal segmented control (vultr-style) */
.product-tabs__nav {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .6rem;
  margin-bottom: 2.6rem;
}
.product-tabs__tab {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.7rem;
  line-height: 1.25;
  border-radius: 2px;
  border: 1px solid #e4e9f2;
  background: #fff;
  color: #46506a;
  font-size: 1.03rem; font-weight: 600;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-tabs__tab:hover { border-color: #bcd0ff; color: #2d74ff; }
.product-tabs__tab.active,
.product-tabs__tab.active:hover {
  background: linear-gradient(135deg, #2d74ff 0%, #1c5fe0 100%);
  border-color: transparent; color: #fff;
  box-shadow: 0 14px 30px -12px rgba(45,116,255,.7);
}

.product-tabs__card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 74px -40px rgba(20,40,80,.34);
}
.product-tabs__body { padding: 3rem 3.2rem; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.product-tabs__body h3 { font-size: 1.7rem; font-weight: 700; color: #1c2334; margin-bottom: 1.1rem; }
.product-tabs__body p { color: #5b6577; font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.3rem; }
.product-tabs__bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; }
.product-tabs__bullets li { position: relative; padding-left: 1.5rem; color: #4a5468; font-size: 1.02rem; }
.product-tabs__bullets li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: #2d74ff;
}
.product-tabs__img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.product-tabs__visual {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 260px; padding: 2.5rem 2.5rem 2.5rem 3rem;
}
.product-tabs__visual i {
  display: flex; align-items: center; justify-content: center;
  font-size: 7.5rem; line-height: 1; color: #2d74ff;
}
.product-tabs__visual i::before { display: block; line-height: 1; }
@media (max-width: 991.98px) {
  .product-tabs__visual { min-height: auto; padding: 0 1.5rem 1.5rem; }
  .product-tabs__visual i { font-size: 5rem; }
}
@media (max-width: 991.98px) {
  .product-tabs__body { padding: 2rem 1.6rem; }
  .product-tabs__bullets { grid-template-columns: 1fr; }
  .product-tabs__img { min-height: 240px; }
}

/* FAQ */
.product-faq__acc .accordion-item.product-faq__item {
  border: 1px solid #eef1f6;
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -20px rgba(20,40,80,.25);
  background: #fff;
}
.product-faq__item .accordion-button {
  padding: 1.4rem 1.7rem;
  font-size: 1.18rem; font-weight: 600; color: #22293a;
  background: #fff;
}
.product-faq__item .accordion-button:not(.collapsed) { color: #2d74ff; background: #f4f8ff; box-shadow: none; }
.product-faq__item .accordion-button:focus { box-shadow: none; border-color: transparent; }
.product-faq__item .accordion-button::after { width: 1.2rem; height: 1.2rem; background-size: 1.2rem; }
.product-faq__item .accordion-body { padding: .25rem 1.7rem 1.5rem; color: #5b6577; font-size: 1.06rem; line-height: 1.85; }

/*--------------------------------------------------------------
# Squared design — no border-radius over 2px (circles preserved)
--------------------------------------------------------------*/
:root {
  --bs-border-radius: 2px;
  --bs-border-radius-sm: 2px;
  --bs-border-radius-lg: 2px;
  --bs-border-radius-xl: 2px;
  --bs-border-radius-xxl: 2px;
  --bs-border-radius-pill: 2px;
}
.rounded, .rounded-1, .rounded-2, .rounded-3, .rounded-4, .rounded-5,
.rounded-sm, .rounded-lg, .rounded-pill,
.card, .btn, .nav-link, .form-control, .form-select, .accordion-item, .accordion-button, .alert,
.feature-card, .service-item, .pg-card, .pg-card-inner, .pg-badge,
.ai-hero__cta, .ai-product-card, .ai-tag, .ai-metric, .ai-showcase__media img,
.cmp-btn, .cmp-terminal, .cmp-hero__img, .cmp-product-card, .cmp-tag, .cmp-usecase, .cmp-metric,
.product-tabs__tab, .product-tabs__card, .product-tabs__img,
.product-faq__acc .accordion-item.product-faq__item {
  border-radius: 2px !important;
}
/* keep intentional circles */
.rounded-circle, .cmp-terminal__bar span, .product-tabs__bullets li::before { border-radius: 50% !important; }

/*--------------------------------------------------------------
# Product single hero — clear fixed header, grow with content
--------------------------------------------------------------*/
.product-banner {
  height: auto;
  min-height: 56vh;
  margin-top: 0;
  padding: 130px 0 60px;
  overflow: visible;
  align-items: center;
}
@media (max-width: 991.98px) {
  .product-banner { min-height: auto; padding: 110px 0 48px; }
}

/*--------------------------------------------------------------
# About — history timeline & qualifications
--------------------------------------------------------------*/
.history-timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 2.6rem; }
.history-timeline::before {
  content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px;
  background: linear-gradient(180deg, #2d74ff 0%, rgba(45,116,255,.12) 100%);
}
.history-item { position: relative; padding-bottom: 2.6rem; }
.history-item:last-child { padding-bottom: 0; }
.history-item__dot {
  position: absolute; left: -2.6rem; top: 4px; transform: translateX(-1px);
  width: 15px; height: 15px; border-radius: 50%; background: #2d74ff;
  box-shadow: 0 0 0 5px rgba(45,116,255,.16);
}
.history-item__date { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; color: #2d74ff; font-size: .98rem; letter-spacing: .03em; }
.history-item__title { font-size: 1.3rem; font-weight: 700; color: #1c2334; margin: .25rem 0 .45rem; }
.history-item__desc { color: #5b6577; line-height: 1.85; max-width: 60ch; }

/* Qualifications */
.cert-card {
  width: 100%; text-align: center; background: #fff;
  border: 1px solid #eef1f6; border-radius: 2px; padding: 1.8rem 1.2rem;
  box-shadow: 0 10px 30px -20px rgba(20,40,80,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(20,40,80,.3); }
.cert-card img { max-height: 92px; width: auto; max-width: 100%; margin: 0 auto 1rem; display: block; object-fit: contain; }
.cert-card__name { font-weight: 700; color: #1c2334; font-size: 1.05rem; }
.cert-card__desc { color: #5b6577; font-size: .9rem; margin-top: .35rem; line-height: 1.6; }
.qual-item {
  width: 100%; background: #f7f9fd; border: 1px solid #eef1f6; border-radius: 2px;
  padding: 1.5rem 1.6rem; border-left: 3px solid #2d74ff;
}
.qual-item__title { font-size: 1.15rem; font-weight: 700; color: #1c2334; margin-bottom: .4rem; }
.qual-item__desc { color: #5b6577; line-height: 1.8; margin: 0; }

/* Blog / Wiki cards — pin "read more" to the bottom of each card */
.featured-services.blog .service-item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.featured-services.blog .service-item > p { margin-bottom: .8rem; }
/* the summary paragraph (last <p>) grows to fill, pushing the link down */
.featured-services.blog .service-item > p:last-of-type { flex: 1 1 auto; }
.featured-services.blog .service-item .i_read_more {
  position: static !important;   /* base sets absolute bottom:0 */
  margin-top: 0;
  width: 100%;
}

/* About — spacious alternating blocks */
.about-content.about-band { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.about-content .about-block { padding: 0; }
.about-block__title { font-size: clamp(1.55rem, 2.4vw, 2.1rem); font-weight: 800; letter-spacing: -.01em; color: #1c2334; margin-bottom: 1.3rem; }
/* uniform framed media so generic photos still read as intentional */
.about-block__media { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; background: #eef2f9; box-shadow: 0 24px 56px -30px rgba(20,40,80,.32); }
.about-block__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-block__img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 24px 56px -30px rgba(20,40,80,.32); }
.about-richtext p { font-size: 1.06rem; line-height: 1.85; color: #5b6577; margin-bottom: 1.1rem; }
.about-richtext strong { color: #1c2334; font-weight: 700; }
.about-richtext ul { list-style: none; padding: 0; margin: 1.3rem 0; display: grid; gap: .85rem; }
.about-richtext ul li { position: relative; padding-left: 1.6rem; color: #46506a; line-height: 1.8; }
.about-richtext ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: #2d74ff; }
@media (max-width: 991.98px) { .about-content .about-block { padding: 2.2rem 0; } }

/* Product banner (subpage hero) icon visual */
.product-banner__visual {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 180px; padding: 1rem 1rem 1rem 2.5rem;
}
.product-banner__visual i { display: flex; align-items: center; justify-content: center; font-size: 7.5rem; line-height: 1; color: #2d74ff; }
.product-banner__visual i::before { display: block; line-height: 1; }
.product-banner__visual img { max-width: 100%; max-height: 280px; width: auto; height: auto; object-fit: contain; }
/* edge intro decorative spinning rings */
.spin-rings { position: relative; width: 100%; max-width: 340px; margin: 0 auto; aspect-ratio: 1 / 1; }
.spin-rings__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: center; }
.spin-rings__ring--a { animation: spin-cw 22s linear infinite; }
.spin-rings__ring--b { animation: spin-ccw 30s linear infinite; }
.spin-rings__icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4.5rem; line-height: 1; color: var(--accent-color, #2d74ff); }
/* legal / terms page */
.legal-content { max-width: 820px; }
.legal-updated { color: #9aa4b5; font-size: .9rem; margin: 0 0 1.5rem; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; color: #1c2334; margin: 2.2rem 0 1rem; scroll-margin-top: 120px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: #46506a; line-height: 1.9; margin: 0 0 1rem; }
.legal-content ol, .legal-content ul { color: #46506a; line-height: 1.9; padding-left: 1.3rem; margin: 0 0 1.2rem; }
.legal-content li { margin-bottom: .55rem; }
.legal-content strong { color: #1c2334; }
.legal-content a { color: var(--accent-color); }
.legal-toc { position: sticky; top: 120px; background: #f7faff; border: 1px solid #e7eefb; border-radius: 12px; padding: 1.2rem 1.3rem; max-height: calc(100vh - 150px); overflow: auto; }
.legal-toc__title { font-weight: 700; color: #16223d; margin-bottom: .6rem; }
.legal-toc ul { list-style: none; padding-left: 0; margin: 0; }
.legal-toc li { margin: .35rem 0; }
.legal-toc a { color: #5b6577; font-size: .9rem; text-decoration: none; }
.legal-toc a:hover { color: var(--accent-color); }

/* ===== DIA: marketplace block + business-connectivity grid ===== */
.dia-cases { display: grid; gap: 1.25rem; height: 100%; }
.dia-case { position: relative; min-height: 200px; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.dia-case::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,28,.1) 0%, rgba(10,16,28,.85) 100%); }
.dia-case__body { position: relative; z-index: 1; padding: 1.5rem 1.6rem; }
.dia-case__body h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 .4rem; color: #fff; }
.dia-case__body p { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; }
.dia-preview { height: 100%; background: #fff; border: 1px solid #e7eefb; border-radius: 18px; padding: 2rem; box-shadow: 0 24px 60px -38px rgba(20,40,80,.28); }
.dia-preview__label { font-weight: 700; color: #16223d; font-size: 1.15rem; padding-left: .8rem; border-left: 4px solid var(--accent-color); margin-bottom: 1.6rem; }
.dia-preview__stats { display: flex; gap: 1.5rem; margin-bottom: 1.6rem; }
.dia-preview__stat { flex: 1; }
.dia-preview__stat + .dia-preview__stat { border-left: 1px solid #eef2f9; padding-left: 1.5rem; }
.dia-preview__val { font-size: 2.4rem; font-weight: 800; color: #16223d; line-height: 1; }
.dia-preview__lab { margin-top: .5rem; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; color: #8a94a6; }
.dia-preview__hl { display: flex; gap: 1rem; align-items: flex-start; background: #eef4ff; border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 1.5rem; }
.dia-preview__hl i { font-size: 1.5rem; color: var(--accent-color); line-height: 1; }
.dia-preview__hl-title { font-weight: 700; color: #16223d; margin-bottom: .25rem; }
.dia-preview__hl p { margin: 0; color: #5b6577; font-size: .9rem; line-height: 1.55; }
.dia-preview__note { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid #eef2f9; padding-top: 1.3rem; }
.dia-preview__note p { margin: 0; color: #5b6577; font-size: .92rem; line-height: 1.6; }
.dia-preview__note i { font-size: 1.9rem; color: var(--accent-color); flex: none; }
.connectivity h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #16223d; }
.conn-card { position: relative; width: 100%; background: #fff; border: 1px solid #e7eefb; border-left: 3px solid var(--accent-color); border-radius: 10px; padding: 1.6rem 1.4rem; box-shadow: 0 14px 36px -26px rgba(20,40,80,.3); }
.conn-card__badge { position: absolute; top: 1rem; right: 1rem; font-size: .6rem; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--accent-color); background: #eef4ff; border-radius: 6px; padding: .2rem .5rem; }
.conn-card__icon { width: 48px; height: 48px; border-radius: 12px; background: #f5f7fb; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.conn-card__icon i { font-size: 1.4rem; color: var(--accent-color); }
.conn-card h3 { font-size: 1.15rem; font-weight: 700; color: #16223d; margin: 0 0 .6rem; }
.conn-card p { margin: 0; color: #5b6577; font-size: .92rem; line-height: 1.6; }
.conn-stats { margin: 2.5rem auto 0; max-width: 760px; display: flex; justify-content: center; border: 1px solid #e7eefb; border-radius: 16px; padding: 1.6rem; background: #fff; }
.conn-stat { flex: 1; text-align: center; }
.conn-stat + .conn-stat { border-left: 1px solid #eef2f9; }
.conn-stat__val { font-size: 1.7rem; font-weight: 800; color: var(--accent-color); }
.conn-stat__lab { margin-top: .35rem; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; color: #8a94a6; }
@media (max-width: 575.98px) {
  .dia-preview__stats { flex-direction: column; gap: 1rem; }
  .dia-preview__stat + .dia-preview__stat { border-left: 0; padding-left: 0; border-top: 1px solid #eef2f9; padding-top: 1rem; }
  .conn-stats { flex-direction: column; gap: 1rem; }
  .conn-stat + .conn-stat { border-left: 0; border-top: 1px solid #eef2f9; padding-top: 1rem; }
}
@keyframes spin-cw { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
@media (max-width: 991.98px) { .spin-rings { max-width: 240px; margin-top: 1.25rem; } .spin-rings__icon { font-size: 3.2rem; } }
@media (max-width: 991.98px) { .product-banner__visual { min-height: auto; padding: .5rem 0 0; justify-content: flex-start; } .product-banner__visual i { font-size: 5rem; } .product-banner__visual img { max-height: 200px; } }

/* Product solutions — alternating bands + icon visual */
.product-solutions__band.is-light { background: #f5f9ff; }
.product-solutions__title { font-size: clamp(1.45rem, 2.2vw, 1.9rem); font-weight: 700; color: #1c2334; margin-bottom: 1rem; }
.product-solutions__desc { color: #5b6577; font-size: 1.08rem; line-height: 1.85; margin-bottom: 1.3rem; }
.product-solutions__visual {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 200px; padding: 1.5rem 2rem;
}
.product-solutions__visual i { display: flex; align-items: center; justify-content: center; font-size: 7rem; line-height: 1; color: #2d74ff; }
.product-solutions__visual i::before { display: block; line-height: 1; }
@media (max-width: 991.98px) { .product-solutions__visual { min-height: auto; padding: .5rem 0 0; } .product-solutions__visual i { font-size: 5rem; } }

/* Product options (e.g. bare-metal add-ons) */
.option-card {
  display: flex;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 2px;
  box-shadow: 0 8px 28px -20px rgba(20,40,80,.2);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.option-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -22px rgba(20,40,80,.3); border-color: #d8e3ff; }
.option-card__icon { font-size: 1.7rem; line-height: 1; color: #2d74ff; flex: 0 0 auto; }
.option-card__title { font-size: 1.1rem; font-weight: 700; color: #1c2334; margin: 0 0 .35rem; }
.option-card__desc { color: #5b6577; font-size: .95rem; line-height: 1.7; margin: 0; }

/* Contact cards */
.contact-card { width: 100%; text-align: center; background: #fff; border: 1px solid #eef1f6; border-radius: 2px; padding: 2.2rem 1.4rem; box-shadow: 0 10px 30px -20px rgba(20,40,80,.25); }
.contact-card__icon { font-size: 2.2rem; color: #2d74ff; display: block; margin-bottom: 1rem; }
.contact-card__label { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: #8893a7; margin-bottom: .4rem; }
.contact-card__value { font-size: 1.08rem; font-weight: 600; color: #1c2334; text-decoration: none; word-break: break-word; }
a.contact-card__value:hover { color: #2d74ff; }

/*--------------------------------------------------------------
# Showcase feature blocks — text only, no icons/boxes
--------------------------------------------------------------*/
.ai-features { padding: 5.5rem 0 7rem; background: #ffffff; }
.ai-features .row { --bs-gutter-y: 3.5rem; }
.ai-feature { display: flex; flex-direction: column; width: 100%; padding-top: 2.2rem; border-top: 3px solid var(--ai-accent); }
.ai-hero.is-compact { min-height: 58vh; padding: 7rem 0 4rem; }
.ai-feature__icon { display: inline-block; width: auto; height: auto; font-size: 2.8rem; line-height: 1; color: #5b9bff; margin-bottom: 1.3rem; }
.ai-feature__eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 600; color: var(--ai-accent); margin-bottom: .85rem; }
.ai-feature__title { font-size: clamp(1.4rem, 2vw, 1.7rem); font-weight: 700; letter-spacing: -.01em; color: #222222; margin-bottom: 1rem; line-height: 1.25; }
.ai-feature__desc { color: var(--ai-muted); font-size: 1.1rem; line-height: 1.9; margin-bottom: 1.4rem; max-width: 46ch; }
.ai-feature__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem .7rem; }
.ai-feature__bullets li { position: relative; padding: .4rem .9rem; font-size: .92rem; color: #444444; border: 1px solid #e3e8f0; border-radius: 2px; }
@media (max-width: 991.98px) { .ai-feature__icon { width: 68px; height: 68px; } }