
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-optical-sizing: auto;

  font-family: "Blinker", sans-serif;
  font-weight: 300;
  font-style: normal;

  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}

:root {
  --body-bg: #04050e;
  --text-accent: #fff;
  --text-second: #c7c7c7;
  --badge-1: rgb(67 142 68);
  --badge-2: rgb(252 87 50);
  --badge-3: rgb(131 183 53);

  --btn-color: #fff;
  --btn-bg: #000;
  --link-color: #fff;
  --link-color-active: #ffffff;
  --gradient: linear-gradient(90deg, #b6fffe 10%, #d655a5, #538dcb 60%);

  --loading_bg: #dddddd;
  --loading-bar: #000;
  --loading-bar-active: #fff;
}

html {
  height: 100%;
}

html[hidden-bar] {
  overflow: hidden;
  padding-inline-end: 10px;
}

body {
  font-family:
    SF Pro Display,
    sans-serif;
  color: var(--text-accent);
  font-style: normal;

  /* 175% */
  scroll-behavior: smooth;
  letter-spacing: 0.5px;
  background: #000;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

main {
  /* overflow-x: hidden; */
}
b,
strong,em {
    margin: 0 10px;
}
a {
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  pointer-events: auto !important;
  text-decoration: none;
  color: inherit ;
}

a:hover {
  color: var(--link-color-active);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*  container width */

.z-2 {
  z-index: 2;
}

.hdt-s-text2 {
  color: var(--text-second);
}

.under-line {
  text-decoration: underline;
}

.boxed {
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
}

.highlight {
  /* border: 1px solid rgba(255, 255, 255, 0.5) !important; */
  border: none !important;
  background: radial-gradient(
    106.13% 139.77% at 2.35% 0%,
    rgba(82, 189, 255, 0.35),
    rgba(0, 0, 0, 0)
  ) !important;
}

.container,
.container-sm,
.container-xl,
.container-fluid {
  padding: 0 15px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container,
  .container-sm {
    padding: 0 30px;
    max-width: 100%;
  }

  .container-xl {
    padding: 0 50px;
  }

  .container-fluid {
    padding: 0;
    max-width: 100%;
  }
}

@media (min-width: 1150px) {
  .container {
    max-width: 1760px;
    padding: 0 50px;
  }

  .container-sm {
    padding: 0 50px;
    max-width: 90%;
  }

  .container-xl {
    padding: 0 70px;
  }
}

@media (min-width: 1700px) {
  .col-2xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.333%;
  }

  .container-xl {
    padding: 0;
  }

  .col-2xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
}

:disabled {
  cursor: default;
}

p {
  margin-bottom: 0;
}

/* 
  1. Font size
  2. Font weight
  3. Grid Spacing
  4. Button

*/
/* 
   ** font size
*/
/* 1. Heading */
/* 
  font size: 200px 120px 100px 70px 60px 50px 40px 30px
*/

@media (min-width: 768px) {
 
  .boxed {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (min-width: 1200px) {


  .boxed {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (min-width: 1366px) {
  .boxed {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
}

@media (min-width: 1440px) {
  .boxed {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

@media (min-width: 1600px) {
  .boxed {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.hdt-badge {
  display: inline-flex;
  padding: 6px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--badge-color);
  
  letter-spacing: 0.55px;
  border-radius: 100px;
  background-color: var(--badge-bg-color);
  text-transform: uppercase;
}

.hdt-badge-1 {
  --badge-bg-color: var(--badge-1);
  --badge-color: #fff;
}

.hdt-badge-2 {
  --badge-bg-color: var(--badge-2);
  --badge-color: #fff;
}
.hdt-badge-3 {
  --badge-bg-color: var(--badge-3);
  --badge-color: #fff;
}

/*  3. Grid spacing */

/* 4. Button */
.hdt-full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hdt-btn {
  display: inline-flex;
  padding: 16px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--btn-color);
  font-style: normal;
  font-weight: 600;
  
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 2;
}

.light_skew_hover {
  position: relative;
  overflow: hidden;
}

.light_skew_hover:after {
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
  width: 200%;
  z-index: -1;
  background-image: linear-gradient(
    to right,
    transparent,
    #0b77da,
    transparent
  );
}

.light_skew_hover:hover::after {
  -webkit-animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
  animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}

.light_skew {
  position: relative;
  overflow: hidden;
}

.light_skew:after {
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
  width: 200%;
  z-index: -1;
  -webkit-animation: shine2 5s cubic-bezier(0.01, 0.56, 1, 1) infinite;
  animation: shine2 5s cubic-bezier(0.01, 0.56, 1, 1) infinite;
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(0, 174, 255, 0.77),
    transparent
  );
}

@-webkit-keyframes shine {
  100% {
    left: -200%;
  }
}

@keyframes shine {
  100% {
    left: -200%;
  }
}

@-webkit-keyframes shine2 {
  20% {
    left: -200%;
  }

  100% {
    left: -200%;
  }
}

@keyframes shine2 {
  20% {
    left: -200%;
  }

  100% {
    left: -200%;
  }
}

.hdt-btn-style1 {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.hdt-btn-style2 {
  border: none;
  outline: none;
  position: relative;
  color: var(--btn-color);
}

.hdt-btn-style2::before {
  background: linear-gradient(
    90.04deg,
    #ff9c8d 18.06%,
    #d655a5 34.19%,
    #6053cb 49.98%
  );
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: 0.35s linear;
  -o-transition: 0.35s linear;
  transition: 0.35s linear;
}

.hdt-btn-style2::before,
.hdt-btn-style2::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.hdt-btn-style2::after {
  background: var(--body-bg);
  top: 1px;
  right: 1px;
  left: 1px;
  bottom: 1px;
  z-index: -1;
}

.hdt-btn-style2:hover::before {
  -webkit-animation: bghover 5s linear infinite;
  animation: bghover 5s linear infinite;
  background-size: 400% 400%;
}

.hdt-btn-hover-icon {
  gap: 0;
}

.hdt-btn-hover-icon .hdt-icon {
  opacity: 0;
  width: 0px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.hdt-btn:hover {
  color: var(--btn-color);
}

.hdt-btn-hover-icon:hover .hdt-icon {
  opacity: 1;
  width: 16px;
  margin-left: 3px;
}

.hdt-btn-outline {
  background-color: transparent;
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  border-radius: 100px;
  -webkit-transition: 0.15s ease-in;
  -o-transition: 0.15s ease-in;
  transition: 0.15s ease-in;
}

/* input */
input:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus::-moz-placeholder {
  color: transparent !important;
}

input:focus:-ms-input-placeholder {
  color: transparent !important;
}

input:focus::-ms-input-placeholder {
  color: transparent !important;
}

input:focus::placeholder {
  color: transparent !important;
}

/* image */
img,
picture,
video {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

img,
picture {
  pointer-events: none;
}

.hdt-ratio {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.hdt-ratio::before {
  content: "";
  width: 0;
  height: 0;
  display: block !important;
  padding-bottom: var(--ratio-percent);
}

.hdt-ratio:not(.no-resize) :where(img, picture, video) {
  position: absolute;
  inset: 0;
  display: block;
}

/* .hdt-ratio img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hdt-ratio--adapt_image .hdt-ratio {
  --ratio-percent: calc(100% / (var(--aspect-ratioapt)));
}


/* scroll nap */
.scroll-snap {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 5px;
  padding-bottom: 20px;
}

/* width */
:where(.tb-w, .scroll-snap)::-webkit-scrollbar {
  width: 100%;
  height: 3px;
}

/* Track */
:where(.tb-w, .scroll-snap)::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
:where(.tb-w, .scroll-snap)::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
:where(.tb-w, .scroll-snap)::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #888; /* رنگ خاکستری تیره */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (max-width: 767px) {
  .scroll-snap {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

/* tabs effect */

/*  back to top */
back-to-top {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  -webkit-transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  -o-transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(36, 135, 234, 0.7);
}

back-to-top:hover {
  cursor: pointer;
  background-color: var(--link-color);
  color: var(--link-color-active);
}

back-to-top:active {
  background-color: #555;
}

back-to-top.show {
  opacity: 1;
  visibility: visible;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.background-none.section-inner {
  background-image: none;
}

@media (max-width: 1023px) {
  .hdt-btn-hover-icon .hdt-icon {
    display: none;
  }
}


@media (max-width: 625px) {

  .hdt-btn-hover-icon .hdt-icon {
    opacity: 1;
    visibility: visible;
    width: 16px;
    margin-left: 3px;
  }
}

sidebar_menu_mb {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

sidebar_menu_mb.active .content {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  pointer-events: auto;
}

sidebar_menu_mb.active .overlay,
sidebar_menu_mb.active .close_btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

sidebar_menu_mb .overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  will-change: opacity;
  visibility: hidden;
}

sidebar_menu_mb .content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  width: 300px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition:
    transform 0.25s ease-in-out,
    -webkit-transform 0.25s ease-in-out;
  will-change: transform;
  height: 100vh;
}

sidebar_menu_mb .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  visibility: hidden;
}

sidebar_menu_mb .brand_logo {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 25vh;
  width: 100%;
  margin-bottom: 10px;
}

sidebar_menu_mb .brand_logo::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
  height: 1px;
}

sidebar_menu_mb .brand_logo a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

sidebar_menu_mb .brand_logo img {
  width: 120px;
}

sidebar_menu_mb .menu_list {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  /* height: calc(100vh - 400px); */
  overflow: auto;
}

sidebar_menu_mb .menu_list::after {
  position: absolute;
  content: "";
  bottom: 1px;
  right: 0;
  left: 0;
  height: 1px;
  -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
}

sidebar_menu_mb .menu_list a {
  padding: 15px 30px;
  display: block;
  font-weight: 400;
  
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  will-change: background-color, color;
}

sidebar_menu_mb .menu_list .scrollspy_s.active {
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--link-color-active);
}

sidebar_menu_mb .hdt-btn {
  margin-left: 30px;
  border-radius: 0;
}

sidebar_menu_mb .footer {
  height: 20vh;
}

.scrollspy_s.active {
  color: var(--link-color-active);
}

/* cursor */

.ease-linear {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

.duration-1000 {
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.transition-opacity {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.mix-blend-screen {
  mix-blend-mode: screen;
}


.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.z-20 {
  z-index: 20;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.fixed {
  position: fixed;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-glow canvas {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

cursor {
  z-index: 333;
}

@media (max-width: 1149px) {
  cursor {
    display: none !important;
  }
}

/* 
  ======================
  END TOP LEVEL 
  ======================
*/
/* 
  ======================
  MARQUEE 
  ======================
*/

.marquee {
  width: 100%;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: marquee 25s linear infinite;
  animation: marquee 25s linear infinite;
  pointer-events: auto;
}

.marquee__item {
  display: inline-block;
}

@media (min-width: 1150px) {
  .marquee:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* iphone 14 */
.mb_screen .mb_view {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.iphone {
  /* width: fit-content; */
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 30px);
  flex: 0 0 calc(25% - 30px);
}

.ip14 {
  width: fit-content;
  position: relative;
  border-radius: 50px;
  border: 5px solid #1a1a1a;
  /* border: 5px solid #1a1a1a; */
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.ip14 .ip_view {
  display: flex;
  max-width: 320px;
  border-radius: 46px;
  overflow: hidden;
}

.ip_ctrl {
  position: absolute;
  inset: -8px;
}

.ip_ctrl .ctrl_left {
  left: 0;
}

.ip_ctrl .ctrl_left,
.ip_ctrl .ctrl_right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
}

.ip_ctrl .ctrl_right {
  right: 0;
}

.ip_ctrl .silent {
  position: absolute;
  top: 15%;
  width: 100%;
  height: 5%;
  border-radius: 1.282px;
  border: 0.256px solid #1a1a1a;
  background: #1a1a1a;
  -webkit-box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
  box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
}

.ip_ctrl .vl_in {
  top: 23%;
}

.ip_ctrl .vl_in,
.ip_ctrl .vl_de {
  position: absolute;
  width: 100%;
  height: 8%;
  border-radius: 1.282px;
  border: 0.256px solid #1a1a1a;
  background: #1a1a1a;
  -webkit-box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
  box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
}

.ip_ctrl .vl_de {
  top: 33%;
}

.ip_ctrl .btn_power {
  position: absolute;
  top: 27%;
  width: 100%;
  height: 12%;
  border-radius: 1.394px;
  border: 0.256px solid #1a1a1a;
  background: #1a1a1a;
  -webkit-box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
  box-shadow:
    0.321px 0px 0px 0px #1a1a1a inset,
    -0.962px -2.564px 0.962px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2.564px 0.321px 0px rgba(65, 66, 60, 0.3) inset,
    -1.282px 0px 1.282px 0px #41423c inset,
    0px 1.282px 0px 0px #41423c inset,
    0px -1.282px 0.641px 0px #1a1a1a inset,
    -0.641px 0px 0px 0px #1a1a1a inset;
}

.ip_title {
  text-align: center;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  color: #000;
  -webkit-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #fff;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 7px;
  height: 11px;
}

@media (max-width: 1149px) {
  .ip14 {
    margin-left: auto;
    margin-right: auto;
  }

  .ip14 .ip_view {
    max-width: 300px;
  }

  .mb_screen .mb_view {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .iphone {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
  }

  .swiper-button-prev,
  .swiper-button-next {
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  main {
    /* overflow-x: hidden; */
  }

  .iphone {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .mb_screen .mb_view {
    gap: 15px;
  }

  .ip14 {
    margin-bottom: 15px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 34px;
    height: 34px;
  }
}

/* topbar */
.topbar {
  position: relative;
  z-index: 77;
  -webkit-transition: height 0.25s linear;
  -o-transition: height 0.25s linear;
  transition: height 0.25s linear;
  overflow: hidden;
}

.topbar,
.topbar .wrap {
  display: block;
  height: 43px;
}

.topbar .background-inner {
  background: linear-gradient(
    90deg,
    #4a3eae 0.02%,
    #d655a5 73.23%,
    #ff9c8d 99.71%
  );
  position: relative;
}

.topbar .close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  padding: 10px;
  border: none;
  background-color: transparent;
}

.topbar .slider {
  max-width: min(600px, 80vw);
  overflow: hidden;
  height: 100%;
}

.topbar .swiper-slide {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  
}

.topbar .swiper-slide a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}



/* EFFECT */
body:not(.noel) .noel_image {
  display: none;
}
body:not(.noel) snow-ball {
  display: none !important;
}


.section-inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: none;
}

/* 1. header */
header {
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.15s linear;
  -o-transition: 0.15s linear;
  transition: 0.15s linear;
  z-index: 888;
}

.logo_cta img {
  width: 120px;
}

.logo_mb {
  display: none;
}

.hdt-nav-up {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hdt-nav-down {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.hdt-nav-not-root .hdt-header {
  background-color: #000000d1;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hdt-header {
  padding: 15px 0;
  -webkit-transition: 0.35s linear;
  -o-transition: 0.35s linear;
  transition: 0.35s linear;
  z-index: 99;
}

.hdt-header a.hdt-btn {
  height: 43px;

}

.hdt-header_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.hdt-header li a {
  padding: 10px 12px;
}

.hdt-header .hdt-logo {
  flex: 0 0 auto;
  margin: 0 auto;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hdt-nav_button {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background-color: transparent;
  outline: none;
  border: none;
}

.hdt-nav_button .hdt-ctrl {
  background-color: #fff;
  width: 30px;
  height: 2px;
  display: inline-block;
  -webkit-transition: 0.25s ease-in;
  -o-transition: 0.25s ease-in;
  transition: 0.25s ease-in;
}

.hdt-menu_nav.open {
  z-index: 999;
}

.hdt-menu_nav.open .overlay {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}


/* ooff2 */
.ooff2 .list-check {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 49px;
}

.ooff2 .check-item {
  gap: 15px;
  font-style: normal;
  font-weight: 600;
  
  /* 150% */
}

.ooff2 .check-item,
.ooff2 .list-check .icon {
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ooff2 .list-check .icon {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: #16181d;
}

.features .col_wrap {
  border-radius: 10px;
  background: #16181d;
  padding: 50px 45px 54px 66px;
  position: relative;
}

.features .feature_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -9999;
}

.features .col_wrap::before {
  position: absolute;
  content: "";
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #ff9c8d 10%, #d655a5, #6053cb 60%);
  z-index: -1;
  border-radius: inherit;
}

.features .title_wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 11px;
}

.features .title_wrap svg {
  position: absolute;
  right: -10px;
  top: 20px;
  -webkit-transform: translate(100%, -100%);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
}

.features .title_wrap h4 span {
  padding-bottom: 5px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.features .info_wrap {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features .info_wrap .hdt-btn {
  font-weight: 600;
}

.features .hdt-btn {
  height: 42px;
}

.features .ossk2 {
  display: inline-flex;
  gap: 19px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.features .heading {
  margin-bottom: 18px;
}

.features .heading .gradient {
  background: linear-gradient(
    90deg,
    #ff9c8d 18.06%,
    #d655a5 60.19%,
    #6053cb 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features .sub {
  margin-bottom: 54px;
}

.tabs {
  display: flex;
  gap: 11px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.15);
}


.clx_1 {
  width: 120px;
  top: 0;
  right: 0;
  transform: translate(40%, -30%);
}
.clx_1,
.clx_2 {
  position: absolute;
  z-index: 3;
}
.clx_2 {
  width: 150px;
  bottom: 0;
  left: 0;
  transform: translateX(-40%);
}
@media (max-width: 767px) {
  .clx_1 {
    transform: translate(20%, -30%);
  }
  .clx_2 {
    transform: translateX(-20%);
  }
}


.empower .col-left {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

:where(.empower, popup) .svg_animation {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  width: 220px;
  max-width: 70%;
  margin: 0 auto;
  -webkit-transform: translateX(-5%);
  -ms-transform: translateX(-5%);
  transform: translateX(-5%);
}

.empower .section-inner {
  background: none;
  margin-bottom: 50px;
  position: relative;
  z-index: 4;
}

.empower .col-inner .text_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: -1;
}

.empower .swatch_size {
  position: absolute;
  top: 28%;
  right: 6%;
}

.empower .swatch_color,
.empower .swatch_size {
  display: none !important;
}

.empower .swatch_size .size_list,
.empower .swatch_color .color_list {
  display: flex;
  padding: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.49) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.empower .swatch_size .size_wrap {
  display: flex;
  gap: 10px;
}

.empower .size_wrap span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  
}

.empower .swatch_color {
  position: absolute;
  bottom: 15%;
  left: 6%;
  pointer-events: auto;
  z-index: 1;
}

.empower .swatch_color .color_list {
  padding: 9px 25px 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  
  gap: 10px;
}

.empower .color_list .color_wrap {
  display: flex;
  gap: 18px;
}

.empower .color_list button {
  outline: none;
  border: none;
  background-color: var(--bg-color);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  position: relative;
}

.empower .color_list button.is-selected {
  border: 2px solid var(--link-color-active);
}

/* 
.empower .color_select img {
  display: none;
}

.empower .color_select img.is-selected {
  display: block;
} */

.empower .col-inner .text_bg .gradient {
  background: linear-gradient(
    91deg,
    #76f5bc 1.61%,
    #221df3 53.61%,
    #ebeef9 95.8%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.empower .col-left .top span {
  margin-bottom: 40px;
}


.empower .col-left .bot span {
  background: linear-gradient(
    90.04deg,
    #ff9c8d 18.06%,
    #d655a5 34.19%,
    #6053cb 49.98%
  );
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: var(--body-bg);
  -webkit-animation: bghover 15s linear infinite;
  animation: bghover 15s linear infinite;
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  transition: all 0.35s linear;
  background-size: 400% 400%;
}

.empower .col-right {
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  gap: 50px;
}

.empower .col-right p {
  color: #c7c7c7;
  font-style: normal;
  font-weight: 400;
  /* 150% */
}

.empower .empower_earth {
  width: 200px;
  height: 200px;
  position: relative;
}

.empower .empower_earth svg:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.empower .empower_earth svg:nth-child(2) {
  position: absolute;
  bottom: 0;
  right: 0;
}

.empower .col-right .top {
  display: flex;
  gap: 62px;
}

.empower .col-right .top,
.empower .col-right .top .empower-circle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.empower .col-right .top .empower-circle {
  position: relative;
  width: 65px;
  height: 65px;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.empower .empower-circle::before,
.empower .empower-circle::after {
  position: absolute;
  content: "";
}

.empower .empower-circle::before {
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  background: var(--gradient);
  z-index: -1;
  border-radius: inherit;
}

.empower .empower-circle::after {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--body-bg);
  z-index: -1;
  border-radius: inherit;
}

.empower .tophead {
  margin-bottom: 60px;
}

.empower_grid .col-wrap {
  border-radius: 10px;
  background: rgba(48, 48, 48, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.empower_grid .itemk.col-inner .des {
  margin-bottom: 22px;
}

.empower_grid .col-inner .infok .des {
  margin-bottom: 3px;
}

.empower_grid .info {
  padding: 36px 32px 0 32px;
}


.empower_grid .empower_label {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  /* 266.667% */
  background: linear-gradient(
    91deg,
    #ff9c8d 0%,
    #d655a5 46.64%,
    #6053cb 92.32%
  );
  margin-bottom: 13px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.empower_grid .title {
  color: #fff;
  font-style: normal;
  font-weight: 500;
  /* 133.333% */
  margin-bottom: 9px;
}

.empower_grid .des {
  color: #ffffff;
  font-style: normal;
  
  /* 150% */
  margin-bottom: 0;
  font-weight: 100 !important;
}

.empower_grid .empower_label2 {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  
  /* 266.667% */
  position: absolute;
  top: 36px;
  left: 32px;
}

#popup .empower_label2 {
  display: none;
}

.empower_grid .item8 .col-wrap {
  background: linear-gradient(
    138deg,
    #ff9c8d 1%,
    #d655a5 50.6%,
    #6053cb 99.17%
  );
  height: 527px;
}

.empower_grid .col-wrap {
  height: auto;
  padding-bottom: 35px;
}


/* grid layout2 */
.grid_layout2 .section-inner {
  padding-top: 108px;
}

.grid_layout2 .col-inner {
  border-radius: 10px;
  background: rgba(48, 48, 48, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.grid_layout2 .col:nth-child(1) .col-inner {
  overflow: visible;
}

.grid_layout2 .col-inner .svg_bg {
  pointer-events: none;
}

.grid_layout2 .col-inner .svg_bg img {
  position: unset;
}

.grid_layout2 .label {
  font-style: normal;
  background: linear-gradient(
    91deg,
    #ff9c8d 0%,
    #d655a5 46.64%,
    #6053cb 92.32%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 13px;
  text-transform: uppercase;
  -webkit-background-clip: text;
  font-weight: 600;
  
}

.grid_layout2 .title {
  color: #fff;
  font-style: normal;
  
  /* 133.333% */
  margin-bottom: 9px;
  font-weight: 700;
}

.grid_layout2 .des {
  color: #c7c7c7;
  font-style: normal;
  font-weight: 400;
  
  /* 150% */
  margin-bottom: 0;
}

.grid_layout2 .info {
  padding: 20px;
}

:where(.grid_layout2, popup) .pin {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50% 50% 50% 0;
  position: absolute;
  top: 52%;
  left: 56%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 2;
}

:where(.grid_layout2, popup) .pin::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--link-color-active);
  position: absolute;
  border-radius: 50%;
  margin: 6px;
}

:where(.grid_layout2, popup) .pulse {
  background-color: var(--link-color-active);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 57%;
  left: 56%;
  -webkit-transform: rotateX(65deg) translateX(-28px) translateY(13px)
    rotateY(40deg);
  transform: rotateX(65deg) translateX(-28px) translateY(13px) rotateY(40deg);
  margin: 0 0 0 3.5px;
}

:where(.grid_layout2, popup) .pulse::after {
  content: "";
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  -webkit-box-shadow: 0 0 1px 2px var(--link-color-active);
  box-shadow: 0 0 1px 2px var(--link-color-active);
  opacity: 0;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation: pulsate 1.2s ease-out infinite;
  animation: pulsate 1.2s ease-out infinite;
}

/*  */
.grid_layout2 .svg_bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  /* pointer-events: none; */
  max-width: 40%;
}

/* table */
.hdt-table .section-inner {
  position: relative;
}

.hdt-table .svg_bg {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-40%) translateX(0);
  -ms-transform: translateY(-40%) translateX(0);
  transform: translateY(-40%) translateX(0);
  z-index: -1;
}

.hdt-table .svg_bg2 {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(50%) translateX(0);
  -ms-transform: translateY(50%) translateX(0);
  transform: translateY(50%) translateX(0);
  z-index: -1;
  pointer-events: none;
}

.hdt-table .title {
  background: linear-gradient(
    91deg,
    #76f5bc 30.83%,
    #221df3 40.76%,
    #ebeef9 71.29%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.hdt-table .heading {
  margin-bottom: 26px;
}

.hdt-table .note {
  color: #c7c7c7;
  text-align: center;
  padding: 0 15px;
}

.hdt-table .hdt-des {
  gap: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 41px;
}

.hdt-table .dgroup {
  gap: 18px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hdt-table .dgroup,
.hdt-table .d-inner {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hdt-table .d-inner {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #36373e;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 12px 24px;
  gap: 10px;
}

.hdt-table .d-inner span {
  color: #fff;
  text-align: center;
  
  font-style: normal;
  font-weight: 600;
  
}

.hdt-table .tophead {
  padding-bottom: 54px;
  padding-top: 90px;
}

.hdt-table .hdt-table_wrap {
  padding: 0 57px 30px 47px;
  position: relative;
  border-radius: 40px;
  margin: 0 auto;
}

.hdt-table .hdt-table_wrap::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 40px;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background: linear-gradient(180deg, #ff9c8d, #6053cb, #04050e00);
  z-index: -3;
}

.hdt-table .hdt-table_wrap::after {
  position: absolute;
  content: "";
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background-color: #04050e;
  z-index: -2;
  border-radius: inherit;
}

.hdt-table .ww,
.hdt-table tbody {
  position: relative;
}

.hdt-table tbody {
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 39px 0;
  display: block;
  font-style: normal;
  font-weight: 400;
  background: none;
  color: #ededec;
}

.hdt-table tbody::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(4, 5, 14, 0) 0%,
    rgba(4, 5, 14, 0.5) 38.62%,
    #04050e 71.99%
  );
  z-index: 1;
  -webkit-transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
  -o-transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
  transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
}

.hdt-table .tb_label {
  padding: 2px 5px;
  right: 0;
  bottom: 0;
  color: #fff;
  background-color: rgba(131, 183, 53, 1);
  transform: translate(100%, -70%);
  border-radius: 3px;
  
}

.hdt-table .tb_label,
.hdt-table .tb_viewmore {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hdt-table .tb_viewmore {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(97, 97, 97, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 16px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 10px;
  height: 44px;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  left: 50%;
  bottom: 21%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
  -o-transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
  transition:
    opacity 0.25s ease-in,
    visibility 0.25s ease-in;
}

.hdt-table .ww.view tbody::before,
.hdt-table .ww.view .tb_viewmore {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hdt-table table {
  color: #fff;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.hdt-table thead tr {
  display: flex;
  padding: 29px 0 25px;
}

.hdt-table thead tr th {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  text-align: center;
  position: relative;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  /* 160% */
}

.hdt-table thead tr th:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 1px;
  top: 50%;
  right: 0;
  -webkit-transform: translateX(50%) rotate(-45deg);
  -ms-transform: translateX(50%) rotate(-45deg);
  transform: translateX(50%) rotate(-45deg);
  background: linear-gradient(
    to right,
    rgba(248, 248, 248, 0.55),
    rgba(233, 233, 233, 0)
  );
}

.hdt-table table tr {
  display: flex;
}

.hdt-table table tbody tr:not(.total) td:nth-child(1) {
  padding-left: 63px;
}

.hdt-table table tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  position: relative;
}

.hdt-table table tr td:not(:first-child) {
  text-align: center;
}

.hdt-table table tr:not(:last-child) td:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(250, 249, 247, 0.05);
}

.hdt-table .hdt-wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 45px;
}

.hdt-table .hdt-btn {
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  
  /* 150% */
  outline: none;
  margin-top: 7px;
  padding: 17px 50px;
  height: 78px;
  background: none;
  border: 1px solid #fff !important;
}

.hdt-table .total_wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 216px;
  z-index: 3;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.hdt-table .total_wrap .total_btn {
  display: flex;
}

.hdt-table .total_wrap .total_btn,
.hdt-table .total_wrap .total_btn button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hdt-table .total_wrap .total_btn button {
  display: inline-flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(97, 97, 97, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  height: 44px;

  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
}

.hdt-table .total {
  padding-top: 15px;
  position: relative;
  z-index: 2;
}

.hdt-table .view-more-active .total_wrap .total_btn {
  display: none;
}

.hdt-table .view-more-active .total_wrap {
  position: unset;
}

.hdt-table .view-more-active.hdt-wrap tbody::after {
  opacity: 0;
  visibility: hidden;
}

.hdt-table .total .item {
  border-radius: 10px;
  background: radial-gradient(
    106.13% 139.77% at 2.35% 0%,
    rgba(0, 0, 0, 0.49) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 15px 30px;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 266px;
  height: 100%;
  color: #fff;
  
  font-style: normal;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(71, 115, 255, 0.22);
}

.hdt-table .total .item .sub {
  
  font-weight: 400;
}

.hdt-table .total td {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* mobile screen mb_screen */
.mb_screen {
  padding-top: 133px;
  padding-bottom: 10px;
}

.mb_screen .tophead {
  position: relative;
  padding: 0 15px;
  margin-bottom: 70px;
}

.mb_screen .tophead .des {
  color: #c7c7c7;
  font-style: normal;
  font-weight: 400;
}

.mb_screen .bg_layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateY(-185%);
  -ms-transform: translateY(-185%);
  transform: translateY(-185%);
}

.mb_screen .gradient {
  background: linear-gradient(
    90deg,
    #ff9c8d 29.33%,
    #d655a5 50.37%,
    #6053cb 70.98%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mb_screen .title {
  margin-bottom: 11px;
}

.mb_screen .des {
  margin-bottom: 0;
}


/* solution */
.solution .section-inner {
  padding: 0 80px;
}

.solution .content_wrap {
  padding: 79px 133px 88px;
  border-radius: 20px;
  background-color: #16171c;
  max-width: 1760px;
  margin: 0 auto;
  width: 100%;
}

.solution .content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.solution .content,
.solution .box {
  display: flex;
  gap: 30px;
}

.solution .content .item-icon .item-inner {
  border-radius: 10px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: flex;
  width: 280px;
  padding: 74px 33px 48px;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 43px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border-color 0.5s linear;
  -o-transition: border-color 0.5s linear;
  transition: border-color 0.5s linear;
  border: 1px solid rgba(52, 99, 193, 0.31);
  background: radial-gradient(
    117.63% 154.08% at -5.51% -4.72%,
    rgba(36, 59, 86, 0.49),
    rgba(0, 0, 0, 0)
  );
}

.solution .item .title {
  margin-bottom: 0;
  margin-top: 30px;
}

.solution .item-icon .des {
  font-style: normal;
  font-weight: 500;
  /* 136.364% */
  text-align: center;
  color: rgb(144, 196, 238);
}

.solution .item-icon .des a {
  color: inherit;
}

.solution {
  margin-bottom: 64px;
}

/* payment */
.payment .box {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}

.payment .text-rotate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.payment .title {
  color: #fff;
  
  font-style: normal;
  font-weight: 700;
  
  letter-spacing: 2px;
  margin-top: 12px;
  margin-bottom: 7px;
}

.payment .line {
  height: 1px;
  background-color: #fff;
}

.payment .line1 {
  width: 117px;
}

.payment .line2 {
  width: 70px;
  margin-top: 9px;
}

.payment .line3 {
  width: 43px;
  margin-top: 9px;
}

/* pucharse */
.pucharse .section-inner {
  padding: 18px 15px 80px;
  position: relative;
  background-image: url("https://cdn.apexvpn.app/images/DtJJ8Ep4VpWk.png");
}

.pucharse br {
  display: block !important;
}

.pucharse .gradient {
  background: linear-gradient(
    91deg,
    #76f5bc 26.28%,
    #221df3 53.63%,
    #ebeef9 75.81%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pucharse .hdt-btn {
  margin-top: 48px;
  margin-bottom: 0;
  height: 50px;
}

/* footer */
.footer-inner {
  position: relative;
}

.footer-inner img,
.footer-inner .bg {
  pointer-events: none;
}

.footer-inner .bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.footer-inner .boxed {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 44px;
  padding-bottom: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #fff;
  
  font-style: normal;
  font-weight: 400;
  
  /* 175% */
}

.footer-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 3px;
  background: rgba(4, 5, 14, 1);
}

.footer-inner .policy {
  display: flex;
  gap: 20px;
}

@media (min-width: 769px) {

  .empower .section-inner {
    margin-bottom: 80px;
  }

  .grid_layout2 .info {
    padding: 36px 32px 30px 32px;
  }

}

@media (min-width: 1025px) {


  .solution .item-icon .des a:hover {
    color: var(--link-color);
  }

  .solution .content .item-icon .item-inner:hover {
    border-color: #fff;
  }

  .grid_layout2 .col-inner:hover [name="grid_popup"] span,
  .empower_grid .col-wrap:hover [name="grid_popup"] span {
    opacity: 1;
  }

  .color_list button:hover::before {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .hdt-header_wrap {
    gap: 39px;
  }

  .hdt-logo {
    -webkit-box-ordinal-group: -9998;
    -ms-flex-order: -9999;
    order: -9999;
  }

  .hdt-nav_button {
    display: none;
  }

  .hdt-menu_nav .menu__wrap {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .hdt-header .hdt-nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }

  .empower .section-inner {
    margin-bottom: 142px;
  }
}

@media (min-width: 1366px) and (max-width: 1480px) {

  .empower_grid .col-llg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .empower_grid .col:not(.item1, .item2) .col-wrap {
    height: unset !important;
  }

  .empower_grid .col.item8 .col-wrap {
    height: 430px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1480px) {
  .empower_grid .col-wrap.item-fix {
    height: 700px;
  }

  .grid_layout2 .col:nth-child(1) .col-inner,
  .grid_layout2 .col:nth-child(2) .col-inner {
    max-height: 540px;
  }

  .ecom_preview .tophead p br {
    display: none;
  }
}

@media (min-width: 1440px) {
  .hdt-header {
    padding: 10px 0;
  }

  .ooff2 .list-check {
    gap: 71px;
  }

  .empower .tophead {
    margin-bottom: 115px;
  }
}

@media (min-width: 1700px) {
 
  .empower .col-right .top {
    margin-left: 20px;
  }
}
@media (max-width: 1700px) {
  .solution .content_wrap {
    padding: 50px;
  }
}

@media (max-width: 1600px) {
  .empower .col-left .top span,
 

  .empower .empower_earth {
    width: 150px;
    height: 150px;
  }

  .hdt-table table tbody tr:not(.total) td:nth-child(1) {
    padding-left: 40px;
  }

  .hdt-table table tbody tr:last-child td:nth-child(1) {
    padding-left: 0 !important;
  }

  .solution .section-inner {
    padding: 0 40px;
  }

  .hdt-table .total .item {
    width: 90%;
  }

  .hdt-table .total .item br {
    display: block !important;
  }

  .hdt-table .total {
    padding-top: 15px;
  }

  .solution .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .solution .content_wrap {
    padding: 40px;
  }

}

@media (max-width: 1500px) {

  .solution .content {
    text-align: center;
  }

  .features .col_wrap {
    padding: 40px;
  }
}

@media (max-width: 1400px) {

  .features .info_wrap {
    gap: 10px;
  }

  .hdt-table table tbody tr:not(.total) td:nth-child(1) {
    padding-left: 30px;
  }

  .empower .col-right {
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }


  .empower .col-left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1366px) {
  .grid_layout2 .col:nth-child(2) .col-inner {
    max-height: 518px;
  }


  .hdt-table .hdt-table_wrap {
    padding: 0 30px 30px;
  }

  .hdt-table tbody {
    padding: 20px 0;
    
  }

}

@media (max-width: 1200px) {
  .hdt-table .hdt-wrap {
    padding: 0 15px;
  }


}

@media (max-width: 1149px) {
  .hdt-table table tbody tr:not(.total) td:nth-child(1) {
    padding-left: 30px;
  }

  .hdt-table .total .item {
    
    padding: 15px 20px;
  }

  .hdt-table thead tr {
    padding: 20px 0;
  }
}

@media (max-width: 1024px) {

  .tabs {
    justify-content: flex-start;
  }


  .grid_layout2 .show__wrap.hdt-ratio::before {
    padding-bottom: 500px;
  }


  .hdt-table .hdt-wrap {
    padding: 0 15px;
  }

  .hdt-header .hdt-logo {
    width: 100%;
  }

  .hdt-table .total_wrap {
    bottom: 150px;
  }

  .logo_mb {
    display: block;
    width: fit-content;
    margin-bottom: 30px;
    margin-left: -3px;
  }

  .solution {
    margin-bottom: 40px;
  }

  .solution .box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .solution .content .item-icon .item-inner {
    margin: 0 auto;
  }

  .solution .content .item-icon {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }


  .empower_grid .item2 .des br {
    display: none;
  }

  .empower_grid .item2 .des {
    margin-bottom: 24px;
  }

  .grid_layout2 .section-inner {
    padding-top: 80px;
  }

  .features .col_wrap br {
    display: none;
  }

  .features .info_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .features .ossk2 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .features .col_wrap {
    padding-left: 35px;
  }

  .features .title_wrap svg {
    right: 0;
    -webkit-transform: translate(50%, -100%);
    -ms-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
  }
}

@media (max-width: 992px) {

  .section-inner br {
    /* display: none; */
  }

  .tabs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hdt-table table tbody tr:not(.total) td:nth-child(1) {
    padding-left: 20px;
  }

  .hdt-table thead tr th:not(:last-child)::after {
    display: none;
  }

  .empower .swatch_size {
    top: 10%;
  }

  .empower .swatch_size .size_list {
    padding: 10px;
  }

  .empower .size_wrap span {
    width: 20px;
    height: 20px;
  
  }

  .empower .swatch_color {
    bottom: 5%;
  }

  .empower .swatch_color .color_list {
    padding: 10px;
  }

  .empower .color_list button {
    width: 20px;
    height: 20px;
  }

  .ooff2 .list-check {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    padding: 0;
  }

  .empower .empower_earth {
    display: none;
  }

  .empower .svg_wrap {
    text-align: center;
    width: 100%;
  }

  .mb_screen .tophead {
    margin-bottom: 30px;
  }

  .hdt-table .d-inner {
    padding: 10px 15px;
  }

  .hdt-table .dgroup {
    gap: 10px;
  }

  .hdt-table .total .item {
    padding: 15px;
  }
}


@media (max-width: 768px) {

  .features .sub {
    margin-bottom: 30px;
  }


  .hdt-table .tb_viewmore,
  .hdt-table tbody::before,
  .features .feature_bg {
    display: none;
  }

  .logo_cta img {
    max-width: 100px;
  }

 
  .hdt-table .total .item {
    padding: 15px;
  }

  .hdt-table .total {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .hdt-table .button-wrap {
    margin-top: 20px;
  }

  .hdt-table table {
    width: 678px;
  }

  .hdt-table .total_wrap {
    left: 15px;
    right: 15px;
  }

  .hdt-table .hdt-table_wrap {
    width: fit-content;
  }

  back-to-top {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: 65px;
  }

  .pucharse .hdt-btn {
    height: 42px;
    margin-top: 30px;
  }

  .pucharse .section-inner,
  .footer-inner .boxed {
    padding-bottom: 30px;
  }

  .footer-inner .boxed {
    padding-top: 30px;
  }

  .solution {
    margin-bottom: 30px;
  }

  .solution .box {
    gap: 15px;
  }

  .solution .item svg {
    width: 70px;
  }

  .solution .item .title {
    margin-top: 10px;
  }


  .solution .content .item-icon .item-inner {
    width: 250px;
    padding: 30px;
    gap: 20px;
  }

  .solution .content .item-icon .item-inner svg {
    width: 50px;
  }

  .solution .content_wrap {
    padding: 30px;
  }


  .grid_layout2 .show__wrap.hdt-ratio::before {
    padding-bottom: 413px;
  }



  .features .col_wrap {
    padding: 25px;
  }

  .empower .svg_wrap {
    text-align: center;
    width: 100%;
  }


  .grid_layout2 .section-inner {
    padding-top: 50px;
  }


  .empower .col-right .top {
    gap: 40px;
  }

  .empower .tophead {
    margin-bottom: 40px;
  }

}

@media (max-width: 625px) {
 
  .hdt-table .hdt-wrap {
    padding-bottom: 10px;
  }

  .hdt-table .hdt-table_wrap {
    padding: 0 15px;
  }

  .footer-inner .boxed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }

  .footer-inner .logo {
    -webkit-box-ordinal-group: -9998;
    -ms-flex-order: -9999;
    order: -9999;
  }

  .solution .section-inner {
    padding: 0 15px;
  }

  .grid_layout2 .svg_bg {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .ooff2 .list-check {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hdt-menu_nav .menu__wrap {
    width: 80vw;
  }

  .empower .col-left .top {
    margin-bottom: 20px;
  }

  .empower .col-left .bot svg {
    width: 100%;
  }

  .banner .hdt-btn {
    height: 42px;
  }

  .banner p {
    margin-bottom: 20px;
  }


  .banner .banner-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .banner .hdt-btn.hdt-btn-outline {
    padding: 10px 25px;
  }

  .empower .col-right .top > svg {
    width: 120px;
  }

  .hdt-table .tophead {
    padding: 40px 0;
  }


  .hdt-table .hdt-btn {
    padding: 10px 15px;
    height: 40px;
  }

  .hdt-table .total .item {
    padding: 15px;
  }
}

@media (max-width: 525px) {



  .grid_layout2 .section-inner {
    padding-top: 30px;
  }

  .banner .product_popup {
    width: 250px;
    gap: 10px;
    padding: 10px;
  }

  .banner .product_popup .img {
    width: 45px;
    height: 45px;
  }


  .banner .product_popup .pr_title {
    margin-bottom: 0;
  }

  .banner .product_popup .pr_popup_btn svg {
    width: 12px;
    height: 12px;
  }


  .banner .section-inner {
    padding-bottom: 60px;
  }


  .hdt-table .hdt-des,
  .hdt-table .heading {
    margin-bottom: 15px;
  }
}

@media (max-width: 425px) {
  :where(.empower_grid .banner_wrap, popup .banner_wrap) .item:nth-child(3) {
    padding-left: 10px;
  }



}


@media (max-width: 375px) {

  :where(.empower_grid .banner_wrap, popup .banner_wrap) .inner {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .features .ossk2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  :where(.empower_grid .banner_wrap, popup .banner_wrap) {
    bottom: 15px;
  }

  :where(.empower_grid .banner_wrap, popup .banner_wrap) .item:nth-child(3) {
    padding-left: 15px;
  }

  .grid_layout2 .svg_bg {
    -webkit-transform: translateY(-75%);
    -ms-transform: translateY(-75%);
    transform: translateY(-75%);
  }

}



@keyframes btn_visible {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }
}

.scr_wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scr_wrap .scr_t_1 {
  right: 8.8%;
}
.scr_wrap .scr_t_1,
.scr_wrap .scr_t_2 {
  position: absolute;
  width: 30%;
  aspect-ratio: 0.59;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  border-radius: 8px;
}
.scr_wrap .scr_t_2 {
  left: 8.8%;
}


.earth {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  overflow-x: hidden;
}
.section-inner.earth-head{
  padding-top: clamp(60px, 10vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
} 
.hdt-version {
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 999px;
  padding: 1px;
}
.hdt-version.v-1 {
  background: linear-gradient(90.02deg, #367aff 0.02%, #76ffe6 98.22%);
}
.hdt-version.v-2 {
  background: linear-gradient(
    93.31deg,
    #ff9c8d 6.39%,
    #d655a5 51.55%,
    #6053cb 95.78%
  );
}
.hdt-version-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: inherit;
  padding: 0 10px;
  gap: 4px;
}


.logo_cta {
  text-transform: lowercase;
  padding-left: 57px;
  background-image: url("https://cdn.apexvpn.app/images/horizontal-white-icon.png?sdfc");
  background-repeat: no-repeat;
  background-position: left 70%;
  background-size: 50px;
  height: 50px;
}
.nav-item {
  padding: 20px 8px;
  margin: 0px 3px;
  text-align: center;
  border-radius: 5px;
  color: grey;
  position: static;
}

.nav-item.active,
.nav-item:hover {
  color: #357dea;
}

.nav-link {
  padding: 5px;
}

.navbar-collapse.collapse.in {
  display: block !important;
}

.fa-angle-down {
  padding-left: 10px;
}

.fa-icon {
  
  color: #fff;
  background-color: pink;
  margin: 2px 10px 5px 0px;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}

.tab {
  margin-bottom: 20px;
  width: 230px;
}

.tab:hover {
  color: #e91e63 !important;
}

.dropdown-item {
  padding: 0px;
}

.dropdown-item:hover {
  background-color: inherit;
}

@media (max-width: 767px) {
  .nav-item {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
  .section-inner.earth-head{
    padding: 0 5% 40px!important;
  } 
}
.hdt-btn-style1,
.hdt-btn-outline {
  border: 1px solid rgba(161, 161, 133, 0.2);
  background: rgba(24, 24, 22, 0.47);
}

.ooff2 .list-check.list-check-intro .icon {
  background: rgba(255, 255, 255, 0.11);
}

.revolutions-icon {
  background-color: linear-gradient(
    90deg,
    rgba(0, 220, 180, 1) 0%,
    rgba(0, 140, 255, 1) 45%,
    rgba(0, 70, 160, 1) 100%
  );
}


.vpn-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  width: 64px;
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vpn-app-item svg {
  
  width: 40px;
  height: 40px;
}

.grid_layout2 .col-inner,
.empower_grid .col-wrap,
.solution .content_wrap {
  min-height: 240px;
  background:rgba(13, 21, 31, 1);
  margin-top:50px!important;
}

body,
p {
  color: #ffffff ;
  /*font-family: "Google Sans", sans-serif;*/

  font-optical-sizing: auto;
  font-weight: 200;
  font-variation-settings: "GRAD" 0;

  
  
  font-style: normal;
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 21%;
  }
}



.features::before {
  position: absolute;
  content: "";
  width: 50%;
  top: 0;
  left: 0;
  padding-bottom: 100%;
  z-index: -1;
  pointer-events: none;
  /* transform: translateX(-50%) translateY(15%); */
}

h2 span,
.top span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 span,
.top span,
.h3,
h3 {
  /*font-family: "Michroma", sans-serif!important;
  font-weight: 400;
  font-style: normal;

  font-family: "Ubuntu", sans-serif!important;
  font-weight: 700;

  font-family: "Play", sans-serif!important;
  font-family: "Numans", sans-serif;
*/
  font-weight: 600;
}
.banner h2 span,
h2 span,
.top span,
.grid_layout2 .label,
.empower_grid .empower_label {
  background: linear-gradient(
      178deg,
      rgba(250, 244, 219, 1),
      rgb(255, 255, 255)
    )
    padding-box text !important;
}
.banner h2 span {
  /*font-family: "Play", sans-serif!important;*/
  font-weight: 600;
}

.menu-mobile {
  display: none;
  padding: 20px;
}
.menu-mobile:after {
  content: "\f394";
  font-family: "Ionicons";
  
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
}
.menu-dropdown-icon:before {
  content: "\f489";
  font-family: "Ionicons";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: #000000af;
  color: #b7cdf8;
}
.menu > ul {
  margin: 0 auto;
  width: 80%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  clear: right;
}
.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}
.menu > ul:after {
  clear: both;
}
.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
}
.menu > ul > li a {
  text-decoration: none;
  padding: 1.5;
  display: block;
  transition: all 0.3s ease;
}
.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #000;
  padding: 20px 0 30px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}
.menu > ul > li > ul > li a {
  color: #ffffff;
  width: 100%;
  padding: 15px 10% !important;
  display: block;
  transition: all 0.3s ease;
}
.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  
}
.menu > ul > li > ul > li > ul > li a {
  border: 0;
  
}
.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}
.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }
  .menu-container .menu {
    display: inline-block;
  }
  .menu-mobile {
    float: right;
    padding: 20px 20px 0;
  }
  .menu-mobile,
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
    width: 100%;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
    padding: 0 40px;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
}
.accordion > div {
  background: rgba(238, 238, 232, 0.04);
  border: 1px solid rgba(96, 95, 91, 0.25);
  border-radius: 30px;
  margin-bottom: 30px;
}
.accordion .ec_pre_btn a {
  padding: 5px 17px !important;
  border: none;
  text-decoration: none;
}





/* ================= 2) CSS ================= */

/* ----- header stacking-context fix (also needed for the mega menu / mobile
   menu to render above the rest of the page instead of behind it) ----- */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.15s linear;
  z-index: 9999;
}

/* ===== Mega menu (Product / Resources / Company) ===== */
.hdt-menu > li.has-mega { position: relative; }
.hdt-menu > li.has-mega > a { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.mega-caret { transition: transform .25s ease; flex: 0 0 auto; }
.hdt-menu > li.has-mega:hover > a .mega-caret,
.hdt-menu > li.has-mega.mega-open > a .mega-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  left: 20%;
  right: auto;
  /* top: var(--header-height, 15px); */
  background: #fff;
  color: #212529;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(15,17,20,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 500;
  width: 60%;
}
.hdt-menu > li.has-mega:hover .mega-menu,
.hdt-menu > li.has-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 8px 28px;
}
.mega-inner--sm { grid-template-columns: repeat(2, 1fr) 1fr; max-width: 920px; }
.mega-inner--simple {
  max-width: 640px;
  grid-template-columns: 1fr 1fr;
  padding: 20px 24px;
  gap: 2px 20px;
}
.mega-menu--simple, .mega-menu--sm { border-radius: 14px  }

.mega-col h5 {
  
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #8a8f98;
  margin: 0 0 14px 4px;
}
.mega-col a.mega-link,
.mega-inner--simple a.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 4px;
  border-radius: 10px;
  text-decoration: none;
  color: #212529;
  transition: background .15s ease;
}
.mega-col a.mega-link:hover,
.mega-inner--simple a.mega-link:hover { background: #f4f5f7; }
.mega-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e1e1e1, #f0f0f0);
}
.mega-icon svg {
  width: 19px; height: 19px;
  color: #171717;
  stroke: currentColor;
}
.mega-link-title {
  display: block;
  
  font-weight: 600;
  margin-bottom: 2px;
}
.mega-link-desc {
  display: block;
  
  color: #7a7f87;
  
}
.mega-featured {
  background: linear-gradient(160deg, #12131a, #1d2130);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-featured img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
}
.mega-featured h5 {
  color: #fff;
  
  font-weight: 700;
  margin: 0 0 6px;
  text-transform: none;
  letter-spacing: 0;
}
.mega-featured p {
  
  color: #c7cad3;
  margin: 0 0 16px;
  
}
.mega-featured .mega-cta {
  color: #fff;
  
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-featured .mega-cta svg { flex: 0 0 auto; }
.mega-featured .mega-cta:hover { text-decoration: underline; }

/* ============ Responsive / mobile off-canvas menu ============ */
@media (max-width: 1024px) {

  .hdt-nav_button { position: relative; z-index: 210; cursor: pointer; }
  .hdt-nav_button .hdt-ctrl { transform-origin: center; }
  .hdt-nav_button.is-active .hdt-ctrl:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdt-nav_button.is-active .hdt-ctrl:nth-child(2) { opacity: 0; }
  .hdt-nav_button.is-active .hdt-ctrl:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .menu__wrap.menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #12131a;
    z-index: 600;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 10px 22px 40px;
    box-shadow: -20px 0 50px rgba(0,0,0,.35);
  }
  .mega-menu{
    width:100%;
    left:0;
  }
  .mega-link-title{
    color:#fff;
  }
  .menu__wrap.menu.mobile-open { transform: translateX(0); }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,14,.55);
    z-index: 90;
    opacity: 0;
    height:100%;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
  }
  .mobile-nav-overlay.is-visible { opacity: 1; visibility: visible; }

  .hdt-menu.d-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    z-index:200;
  }
  .hdt-menu > li { width: 100%; }
  .hdt-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    
  }

  .mega-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }
  .hdt-menu > li.has-mega.mega-open .mega-menu { display: block; }

  .mega-inner,
  .mega-inner--sm,
  .mega-inner--simple {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 6px 4px 18px;
    gap: 2px;
  }
  .mega-col h5 { color: #8a8fa3; margin: 14px 0 6px 4px; }
  .mega-col a.mega-link,
  .mega-inner--simple a.mega-link {
    color: #fff;
  }
  .mega-col a.mega-link:hover,
  .mega-inner--simple a.mega-link:hover { background: rgba(255,255,255,.06); }
  .mega-link-desc { color: #9a9dab; }
  .mega-icon { background: rgba(255,255,255,.08); }
  .mega-icon svg { color: #ffffff; }
  .mega-featured { margin-top: 10px; }

  .hdt-header a.hdt-btn { margin-top: 16px; width: 100%; justify-content: center; }
}
body.no-scroll { overflow: hidden; }

body {
  font-size: clamp(18px, 1.2vw, 22px);
}

/* Headings */
h1 {
  font-size: clamp(52px, 5vw, 84px);
  line-height: 1;
}

h2,.hdt-fz1 {
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.25;
}

h3,.hdt-fz2,
.hdt-fz15,
.hdt-fz3,
.hdt-fz4 {
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.3;
}

h4,.hdt-fz5,
.hdt-fz6 {
  font-size: clamp(22px, 2.5vw, 35px);
  line-height: 1.35;
}

h5,.hdt-fz7 {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
}

h6,.hdt-fz8 {
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.45;
}



