@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/cyberzen/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/cyberzen/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/themes/cyberzen/assets/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("/wp-content/themes/cyberzen/assets/fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
/* Utilisation */
body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
}

img {
  max-width: 100%;
}

.flex {
  display: flex;
}
.flex.flex-col {
  flex-direction: column;
}
.flex.justify-center {
  justify-content: center;
}
.flex.items-center {
  align-items: center;
}

.badge {
  background: #0c0c0c;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 12px;
  border-radius: 100px;
  font-weight: normal;
  font-size: 13px;
}
.badge.outline {
  background: none;
  border: 1px solid #0c0c0c;
  color: #0c0c0c;
}

.logo img {
  max-width: 160px;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transition: all 0.5s ease-in-out;
  margin: 0 auto;
  width: 100%;
  transform: translateY(0);
  border-radius: 0;
  overflow: hidden;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  header {
    overflow: visible;
  }
}
@media screen and (min-width: 993px) {
  body.header-is-fixed header {
    width: 75%;
    max-width: 1200px;
    transform: translateY(20px);
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
  }
}
@media screen and (max-width: 992px) {
  header.is-open nav {
    transform: translateY(0);
    opacity: 1;
  }
}
header .header__inner {
  display: flex;
  align-items: center;
  background: linear-gradient(22deg, rgba(249, 250, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 90%, rgba(210, 210, 210, 0.8) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 992px) {
  header .header__inner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  header .header__inner {
    width: 100%;
    margin: 0;
  }
}
header .header__inner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px solid white;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 992px) {
  header .header__inner {
    justify-content: space-between;
  }
}
header .header__inner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  header .menu__cta {
    display: none;
  }
}
header nav {
  flex-grow: 1;
}
header nav .menu {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  header nav .menu {
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 992px) {
  header nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background: white;
    flex-direction: column;
    width: 100vw;
    margin: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    align-items: center;
  }
}
header nav li {
  position: relative;
}
header nav li:after {
  content: "/";
  margin-left: 16px;
  opacity: 0.3;
  position: absolute;
  right: -16px;
  top: 0;
}
@media screen and (max-width: 992px) {
  header nav li:after {
    display: none;
  }
}
header nav li:last-child:after {
  content: "";
}
header nav a {
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1em;
  position: relative;
}
@media screen and (max-width: 992px) {
  header nav a {
    font-size: 1.8rem;
  }
}
header nav a:before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: -8px;
  bottom: auto;
  transform: scaleX(0);
  height: 2px;
  background: #212121;
  transform-origin: center right;
  transition: transform 0.5s ease-in-out;
}
header nav a:after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -8px;
  top: auto;
  transform: scaleX(0);
  height: 2px;
  background: #212121;
  transform-origin: center left;
  transition: transform 0.5s ease-in-out;
}
header nav a:hover:before, header nav a:hover:after {
  transform: scaleX(1);
}
header #hamburger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 993px) {
  header #hamburger-icon {
    display: none;
  }
}
header #hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #212121;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header #hamburger-icon span:nth-child(1) {
  top: 0px;
}
header #hamburger-icon span:nth-child(2),
header #hamburger-icon span:nth-child(3) {
  top: 9px;
}
header #hamburger-icon span:nth-child(4) {
  top: 18px;
}
header #hamburger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header #hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
header #hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
header #hamburger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.wave-separator {
  position: absolute;
  z-index: 1;
  width: 110%;
  bottom: -52px;
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
  filter: blur(6px);
}
.wave-separator.separator-top {
  transform: rotate(180deg);
  top: -52px;
  bottom: auto;
}
.wave-separator.separator-black {
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave-black.svg");
}
.wave-separator.separator-black.footer-separator {
  bottom: auto;
  z-index: 3;
  height: 260px;
  top: -240px;
}
@media screen and (max-width: 768px) {
  .wave-separator.separator-black.footer-separator {
    top: -80px;
  }
}

.hero {
  position: relative;
  min-height: 70vh;
  padding: 120px 20px 100px 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .hero {
    padding: 120px 0 82px 0;
  }
}
.hero .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero .row {
    flex-wrap: wrap;
  }
}
.hero h1 {
  font-size: 4em;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  margin: 0;
  background: #000000;
  background: linear-gradient(to top right, #000000 0%, #232323 50%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}
.hero h1 span {
  font-size: 0.7em;
  display: block;
}
.hero p {
  font-weight: bold;
  font-size: 1.2em;
}
.hero .hero__bg {
  background-image: url("/wp-content/themes/cyberzen/assets/img/hero__bg.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.hero .hero__illustration {
  mix-blend-mode: darken;
  width: 700px;
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .hero .hero__illustration {
    width: 100%;
  }
}

.gradient-blur {
  position: fixed;
  z-index: 5;
  inset: auto 0 0 0;
  height: 20vh;
  pointer-events: none;
}

.gradient-blur > div,
.gradient-blur::before,
.gradient-blur::after {
  position: absolute;
  inset: 0;
}

.gradient-blur::before {
  content: "";
  z-index: 1;
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
}

.gradient-blur > div:nth-of-type(1) {
  z-index: 2;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
}

.gradient-blur > div:nth-of-type(2) {
  z-index: 3;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
}

.gradient-blur > div:nth-of-type(3) {
  z-index: 4;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
}

.gradient-blur > div:nth-of-type(4) {
  z-index: 5;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
}

.gradient-blur > div:nth-of-type(5) {
  z-index: 6;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.gradient-blur > div:nth-of-type(6) {
  z-index: 7;
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
}

.gradient-blur::after {
  content: "";
  z-index: 8;
  -webkit-backdrop-filter: blur(64px);
          backdrop-filter: blur(64px);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
          mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
}

/* Defs */
@property --angle-1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -75deg;
}
@property --angle-2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}
:root {
  --global--size: clamp(2rem, 4vw, 5rem);
  --anim--hover-time: 400ms;
  --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========== BUTTON ========== */
.button__group {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .button__group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Button Wrap Container */
.button-wrap {
  position: relative;
  z-index: 2;
  border-radius: 999vw;
  background: transparent;
  pointer-events: none;
  display: inline-block;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  white-space: nowrap;
}

/* Button Shadow Container */
.button-shadow {
  --shadow-cuttoff-fix: 2em;
  position: absolute;
  width: calc(100% + var(--shadow-cuttoff-fix));
  height: calc(100% + var(--shadow-cuttoff-fix));
  top: calc(0% - var(--shadow-cuttoff-fix) / 2);
  left: calc(0% - var(--shadow-cuttoff-fix) / 2);
  filter: blur(clamp(2px, 0.125em, 12px));
  -webkit-filter: blur(clamp(2px, 0.125em, 12px));
  -moz-filter: blur(clamp(2px, 0.125em, 12px));
  -ms-filter: blur(clamp(2px, 0.125em, 12px));
  overflow: visible;
  pointer-events: none;
}

/* Shadow */
.button-shadow::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 999vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  left: calc(var(--shadow-cuttoff-fix) - 0.875em);
  padding: 0.125em;
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  overflow: visible;
  opacity: 1;
}

/* ========== BUTTON BASE STYLES ========== */
.button-wrap a {
  /* Basic Styling */
  --border-width: clamp(1px, 0.0625em, 4px);
  all: unset;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "Outfit", sans-serif;
  pointer-events: auto;
  z-index: 3;
  background: linear-gradient(-75deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 999vw;
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2), 0 0 0 0 rgb(255, 255, 255);
  backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  -webkit-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  -moz-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  -ms-backdrop-filter: blur(clamp(1px, 0.125em, 4px));
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  display: block;
  transform-origin: center;
}

.button-wrap a:hover {
  transform: scale(0.975);
  backdrop-filter: blur(0.01em);
  -webkit-backdrop-filter: blur(0.01em);
  -moz-backdrop-filter: blur(0.01em);
  -ms-backdrop-filter: blur(0.01em);
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25), 0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.5), 0 0 0 0 rgb(255, 255, 255);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
}

/* Button Text */
.button-wrap a span {
  position: relative;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1em;
  color: rgb(50, 50, 50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.1);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  padding-inline: 1.5em;
  padding-block: 0.875em;
}

.button-wrap a:hover span {
  text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.12);
}

/* Text */
.button-wrap a span::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: calc(100% - var(--border-width)); /* Prevent overlapping border */
  height: calc(100% - var(--border-width));
  top: calc(0% + var(--border-width) / 2);
  left: calc(0% + var(--border-width) / 2);
  box-sizing: border-box;
  border-radius: 999vw;
  overflow: clip;
  background: linear-gradient(var(--angle-2), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40% 50%, rgba(255, 255, 255, 0) 55%);
  z-index: 3;
  mix-blend-mode: screen;
  pointer-events: none;
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  transition: background-position calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease), --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.button-wrap a:hover span::after {
  background-position: 25% 50%;
}

.button-wrap a:active span::after {
  background-position: 50% 15%;
  --angle-2: -15deg;
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .button-wrap a span::after,
  .button-wrap a:active span::after {
    --angle-2: -45deg;
  }
}
/* ========== BUTTON OUTLINE ========== */
/* Outline */
.button-wrap a::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 999vw;
  width: calc(100% + var(--border-width));
  height: calc(100% + var(--border-width));
  top: calc(0% - var(--border-width) / 2);
  left: calc(0% - var(--border-width) / 2);
  padding: var(--border-width);
  box-sizing: border-box;
  background: conic-gradient(from var(--angle-1) at 50% 50%, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 5% 40%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 60% 95%, rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease), --angle-1 500ms ease;
  box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
}

.button-wrap a:hover::after {
  --angle-1: -125deg;
}

.button-wrap a:active::after {
  --angle-1: -75deg;
}

@media (hover: none) and (pointer: coarse) {
  .button-wrap a::after,
  .button-wrap a:hover::after,
  .button-wrap a:active::after {
    --angle-1: -75deg;
  }
}
/* Shadow Hover */
.button-wrap:has(.button-wrap a:hover) .button-shadow {
  filter: blur(clamp(2px, 0.0625em, 6px));
  -webkit-filter: blur(clamp(2px, 0.0625em, 6px));
  -moz-filter: blur(clamp(2px, 0.0625em, 6px));
  -ms-filter: blur(clamp(2px, 0.0625em, 6px));
  transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

.button-wrap:has(.button-wrap a:hover) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.875em);
  opacity: 1;
}

/* Rotation */
.button-wrap:has(.button-wrap a:active) {
  transform: rotate3d(1, 0, 0, 25deg);
}

.button-wrap:has(button:active) .button-wrap a {
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.125em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2), 0 0.225em 0.05em 0 rgba(0, 0, 0, 0.05), 0 0.25em 0 0 rgba(255, 255, 255, 0.75), inset 0 0.25em 0.05em 0 rgba(0, 0, 0, 0.15);
}

.button-wrap:has(.button-wrap a:active) .button-shadow {
  filter: blur(clamp(2px, 0.125em, 12px));
  -webkit-filter: blur(clamp(2px, 0.125em, 12px));
  -moz-filter: blur(clamp(2px, 0.125em, 12px));
  -ms-filter: blur(clamp(2px, 0.125em, 12px));
}

.button-wrap:has(.button-wrap a:active) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  opacity: 0.75;
}

.button-wrap:has(.button-wrap a:active) span {
  text-shadow: 0.025em 0.25em 0.05em rgba(0, 0, 0, 0.12);
}

/* ======== PRIMARY (BLACK) BUTTON VARIANT ======== */
/* Crystal Black Button Styles */
.button-wrap.is-primary a::after {
  background: conic-gradient(from var(--angle-1) at 50% 50%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 5% 40%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 60% 95%, rgba(255, 255, 255, 0.15)), linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.15);
}

.button-wrap.is-primary a span {
  position: relative;
  color: white;
  z-index: 2;
}

/* Shadow hover for black version */
.button-wrap.is-primary:has(a:hover) .button-shadow {
  filter: blur(clamp(2px, 0.0625em, 6px));
}

.button-wrap.is-primary:has(a:hover) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.875em);
  opacity: 0.75;
}

/* Active state rotation and shadows */
.button-wrap.is-primary:has(a:active) a span::after {
  background-position: 300% 0;
}

.button-wrap.is-primary:has(button:active) a {
  box-shadow: inset 0 0.125em 0.125em rgba(255, 255, 255, 0.05), inset 0 -0.125em 0.125em rgba(0, 0, 0, 0.5), 0 0.125em 0.125em -0.125em rgba(255, 255, 255, 0.1), 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.1), 0 0.225em 0.05em 0 rgba(255, 255, 255, 0.05), 0 0.25em 0 0 rgba(0, 0, 0, 0.75), inset 0 0.25em 0.05em 0 rgba(255, 255, 255, 0.05);
}

.button-wrap.is-primary:has(a:active) .button-shadow {
  filter: blur(clamp(2px, 0.125em, 12px));
}

.button-wrap.is-primary:has(a:active) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  opacity: 0.5;
}

.button-wrap.is-primary:has(a:active) span {
  text-shadow: 0.025em 0.25em 0.05em rgba(255, 255, 255, 0.12);
}

.button-wrap.is-primary a {
  background: linear-gradient(135deg, #111 0%, #222 40%, #2a2a2a 60%, #111 100%);
  color: white;
  overflow: hidden;
  transition: all 0.5s ease;
  background-size: 200% 200%;
}

.button-wrap.is-primary a span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, #000000, #1a1a1a, #444444, #1a1a1a, #000000);
  background-size: 200% 200%;
  border-radius: inherit;
  pointer-events: none;
  transition: background-position 1s ease;
  mix-blend-mode: normal;
  z-index: -1;
  border-radius: 100px;
}

.button-wrap.is-primary a:hover span::after {
  background-position: 100% 0;
}

.section__base {
  padding: 112px 20px;
}
@media screen and (max-width: 768px) {
  .section__base {
    padding: 52px 0;
  }
}
.section__base h2 {
  font-size: 3em;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 768px) {
  .section__base h2 {
    font-size: 2rem;
  }
}

.section__title h2 {
  font-size: 2.7em;
  margin: 0;
}
.section__title.underlined:after {
  content: "";
  background: rgb(217, 217, 217);
  background: linear-gradient(90deg, rgb(217, 217, 217) 0%, rgb(217, 217, 217) 89%, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%);
  width: 70%;
  height: 3px;
  display: inline-block;
}
.section__title.is-center {
  text-align: center;
}
.section__title.is-center:after {
  margin: 0 auto;
}

.section__services {
  text-align: center;
}
.section__services .row__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section__services .row__services {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section__services .row__services.row__services--bottom {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .section__services .row__services.row__services--bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section__services .row__services-full {
  margin-top: 32px;
}
.section__services .service__item {
  background: #f6f6f6;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
}
.section__services .service__item .service__item--inner {
  padding: 20px;
  flex-grow: 1;
}
.section__services .service__item h3 {
  font-size: 1.2em;
}
.section__services .service__item p {
  font-size: 1em;
}
.section__services .service__item img {
  mix-blend-mode: darken;
  max-width: 100%;
  transform: scale(1);
  transition: transform 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .section__services .service__item {
    flex-direction: column-reverse;
    align-items: center;
  }
  .section__services .service__item img {
    max-width: 100%;
  }
}
.section__services .service__item.horizontal {
  flex-direction: row;
  align-items: center;
}
.section__services .service__item.horizontal img {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .section__services .service__item.horizontal {
    flex-direction: column;
  }
  .section__services .service__item.horizontal img {
    max-width: 180px;
  }
}
.section__services .service__item:hover {
  background: #efefef;
}
.section__services .service__item:hover img {
  transform: scale(1.1);
}
.section__services .service__item:hover .service__read-more {
  opacity: 1;
  transform: translateX(0);
}
.section__services .service__item:hover .service__read-more img {
  opacity: 1;
  transform: translateX(0);
}
.section__services .service__item .service__read-more {
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  position: relative;
  transform: translateX(-8px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .section__services .service__item .service__read-more {
    opacity: 1;
    transform: translateX(0);
  }
}
.section__services .service__item .service__read-more img {
  transform: translateX(-8px);
  position: relative;
  top: 1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .section__services .service__item .service__read-more img {
    opacity: 1;
    transform: translateX(0);
  }
}
.section__services .service__item .service__read-more:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 95%;
  background: #0c0c0c;
  left: 0;
  top: 100%;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
  transform-origin: left;
}
@media screen and (max-width: 768px) {
  .section__services .service__item .service__read-more:after {
    display: none;
  }
}
.section__services .service__item .service__read-more:hover:after {
  transform: scaleX(1);
}

.section__stats {
  overflow: hidden;
  /* Cartes */
}
.section__stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
}
.section__stats .stats-grid__title {
  grid-column: 1/span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 12px;
  position: relative;
}
.section__stats .stats-grid__title:before {
  content: "";
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 50em;
  position: absolute;
  bottom: -25%;
  right: -25%;
  z-index: 1;
  filter: blur(20px);
}
.section__stats .stats-grid__title h2,
.section__stats .stats-grid__title p {
  position: relative;
  z-index: 2;
}
.section__stats .stats__card {
  background: white;
  outline: 1px solid #eee;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .section__stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__stats .stats-grid__title {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .section__stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__stats .stats-grid__title {
    grid-column: auto;
  }
}
.section__stats .stats-grid__title {
  grid-column: 1/span 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 32px 12px;
}
@media screen and (max-width: 768px) {
  .section__stats .stats-grid__title {
    align-items: flex-start;
  }
}
.section__stats .stats-grid__title h2 {
  margin: 0;
}
.section__stats .stats__card {
  text-align: left;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section__stats .stats__card {
    padding: 20px;
  }
}
.section__stats .stats__card h3,
.section__stats .stats__card span {
  position: relative;
  z-index: 2;
}
.section__stats .stats__card h3 {
  font-size: 2.8em;
  margin: 0;
}
.section__stats .stats__card span {
  font-weight: bold;
}

.perspective__grid {
  width: 100%;
  position: relative;
  z-index: -10;
  width: 100%;
  height: 30vh;
  overflow: hidden;
  perspective: 22.5vh;
}
.perspective__grid .grid-fade {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0) 0%, white 80%);
}
.perspective__grid .grid-lines {
  width: 100%;
  height: 200%;
  background: linear-gradient(to right, #afafaf 1px, transparent 0), linear-gradient(to bottom, #afafaf 1px, transparent 0);
  background-size: 45px 30px;
  background-repeat: repeat;
  transform-origin: 100% 0 0;
  animation: play 15s linear infinite;
}
@keyframes play {
  0% {
    transform: rotateX(45deg) translateY(-50%);
  }
  100% {
    transform: rotateX(45deg) translateY(0);
  }
}
.perspective__grid .wave-separator {
  width: calc(100% + 40px);
  left: -20px;
}

.section__recommandation {
  text-align: center;
  overflow: hidden;
  padding-bottom: 0;
}
.section__recommandation h2 {
  font-size: 3em;
}
@media screen and (max-width: 768px) {
  .section__recommandation h2 {
    font-size: 2rem;
  }
}

.section__products {
  position: relative;
  overflow: hidden;
}
.section__products h2 {
  text-align: center;
}
.section__products p {
  text-align: center;
  margin-bottom: 72px;
}
.section__products .effect-circle {
  position: absolute;
  width: 100%;
  max-width: 1560px;
  max-height: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: white;
  border-radius: 50%;
  box-shadow: inset 0px -4px 10px 0px rgba(115, 115, 115, 0.2), inset 0px -4px 180px 0px rgba(161, 161, 161, 0.2);
}
.section__products .effect-circle:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 110%;
  bottom: -52px;
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  filter: blur(32px);
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
}
.section__products .effect-circle:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 110%;
  top: -52px;
  transform: rotate(180deg);
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  filter: blur(32px);
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
}
.section__products .col-4:nth-child(2) {
  position: relative;
  top: 72px;
}
@media screen and (max-width: 768px) {
  .section__products .col-4:nth-child(2) {
    top: auto;
  }
}

.product__item {
  display: flex;
  background: #f6f6f6;
  border-radius: 20px;
  padding: 32px;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0) 0px 10px 50px;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}
.product__item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  transform: translateY(-4px);
}
.product__item .button-wrap {
  margin-top: 20px;
}
.product__item .product__item-icon {
  border: 1px solid #9b9b9b;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product__item .product__item-icon:before {
  content: "";
  border: 2px solid #838383;
  opacity: 0.2;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.product__item .product__item-icon:after {
  content: "";
  border: 3px solid #afafaf;
  opacity: 0.2;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.product__item .product__item-icon .product__item-icon-inner {
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__item .product__item-icon img {
  width: 32px;
  height: auto;
}
.product__item h3 {
  text-align: center;
  margin: 0;
  font-size: 1.8em;
  margin-top: 20px;
}
.product__item h4 {
  text-align: center;
  margin: 12px 0 0 0;
  padding: 0;
  font-size: 1.2em;
}
.product__item p {
  text-align: center;
  font-weight: 400;
  margin: 0;
}

.section-trust {
  text-align: center;
}
.section-trust p {
  font-weight: bold;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 20px;
  position: relative;
  margin-top: 52px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(102, 102, 102) 50%, rgb(255, 255, 255) 100%);
}
.marquee:before {
  content: "";
  background: white;
  position: absolute;
  top: 2px;
  height: calc(100% - 4px);
  width: 100%;
  left: 0;
  z-index: 1;
}
.marquee:after {
  content: "";
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
  position: absolute;
  inset: 0;
  z-index: 4;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 100%;
  animation: scroll 20s linear infinite;
  position: relative;
  z-index: 3;
  padding: 32px 0;
}
.marquee__group p {
  font-size: 2em;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .marquee__group p {
    font-size: 1.4rem;
  }
}
.marquee__group p:after {
  content: " /";
  color: #cccccc;
  font-size: 0.5em;
  margin-left: 20px;
  line-height: 1;
  position: relative;
  top: -4px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}
footer {
  position: relative;
  overflow: hidden;
}
footer .footer__cta {
  padding: 240px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background: white;
}
@media screen and (max-width: 768px) {
  footer .footer__cta {
    padding: 52px 0 120px 0;
  }
}
footer .footer__cta:before {
  content: "";
  background-image: url("/wp-content/themes/cyberzen/assets/img/footer_cta.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  mix-blend-mode: difference;
}
footer .footer__cta .container {
  position: relative;
  z-index: 9;
}
footer .footer__cta h2 {
  font-size: 4rem;
  text-align: center;
  background: radial-gradient(circle, #131313, #565656);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}
@media screen and (max-width: 768px) {
  footer .footer__cta h2 {
    font-size: 2rem;
  }
}
footer .footer__cta p {
  text-align: center;
}
footer .footer__content {
  background-color: #090909;
  position: relative;
  padding: 120px 20px 120px 20px;
}
@media screen and (max-width: 768px) {
  footer .footer__content {
    padding: 52px 0 82px 0;
  }
}
footer .footer__content .hide-email a {
  color: white;
  text-decoration: none;
}
footer .footer__content .logo img {
  max-width: 200px;
}
footer .footer__content h2 {
  color: #fff;
}
footer .footer__content p {
  color: #fff;
  font-weight: bold;
}
footer .footer__content .footer__menu-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .footer__content .footer__menu-group .footer__menu:first-child {
  flex-grow: 1;
}
footer .footer__content .footer__menu h3 {
  color: #fff;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}
footer .footer__content .footer__menu ul {
  padding: 0;
  margin: 0;
}
footer .footer__content .footer__menu ul.social-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer__content .footer__menu ul.social-nav img {
  filter: brightness(0) invert(1);
}
footer .footer__content .footer__menu ul li {
  list-style: none;
  margin-bottom: 12px;
}
footer .footer__content .footer__menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
footer .footer__content .footer__menu ul li a:hover {
  opacity: 0.7;
}
footer .footer__content .footer__menu ul li span {
  color: white;
}
footer .footer__content .footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/cyberzen/assets/img/footer_bg.jpg");
  background-size: cover;
  opacity: 0.1;
  background-position: top center;
  z-index: 1;
  animation: lightEffect 3s ease-in-out infinite;
}
@keyframes lightEffect {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.1;
  }
}
footer .footer__content .container {
  position: relative;
  z-index: 9;
}

.certification__group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.certification__group .certification__item img {
  max-width: 160px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
}
.certification__group .certification__item img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .certification__group .certification__item img {
    max-width: 100px;
  }
}

.section__about .button-wrap {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section__about .col-5 {
    height: auto;
    position: relative;
  }
}
.section__about canvas {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  width: 200px;
}

.page__heading {
  text-align: center;
  padding: 192px 20px 132px 20px;
  background-image: url("/wp-content/themes/cyberzen/assets/img/heading.jpg");
  background-size: cover;
  background-position: bottom center;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.page__heading.no-bg {
  background: none;
}
.page__heading:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 110%;
  bottom: -52px;
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
  filter: blur(20px);
}
@media screen and (min-width: 1200px) {
  .page__heading:after {
    height: 300px;
  }
}
.page__heading h1 {
  font-weight: bold;
  background: linear-gradient(to bottom, #000000 0%, #232323 50%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-size: 3rem;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page__heading h1 {
    font-size: 2rem;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.18);
  }
}
.page__heading h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
.page__heading .container {
  max-width: 700px;
  margin: 0 auto;
}

.products-detail__list {
  padding: 92px 20px;
}
.products-detail__list .product-detail__item {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .products-detail__list .product-detail__item {
    flex-wrap: wrap;
  }
}
.products-detail__list .product-detail__item:last-child {
  margin-bottom: 0;
}
.products-detail__list .product-detail__item.reverse {
  flex-direction: row-reverse;
}
.products-detail__list .product-detail__item img {
  border-radius: 20px;
  box-shadow: 0 -32px 74px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .products-detail__list .product-detail__item img {
    max-width: 100%;
  }
}
.products-detail__list .product-detail__item .product-detail__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
.products-detail__list .product-detail__item .product-detail__inner h2 {
  font-size: 2.5em;
  margin: 0;
  font-weight: 900;
}
.products-detail__list .product-detail__item .product-detail__inner h3 {
  font-size: 1.8em;
  margin: 0;
  font-weight: bold;
}
.products-detail__list .product-detail__item .product-detail__inner p {
  font-size: 1.2em;
  margin: 0;
  line-height: 1.5em;
}
.products-detail__list .product-detail__item .product-detail__inner .product-detail--notes {
  border-left: 2px solid #000;
  padding-left: 20px;
}
.products-detail__list .product-detail__item .product-detail__inner .product-detail--notes p {
  font-size: 0.9em;
}

.services-detail__list {
  padding: 92px 20px;
}
@media screen and (max-width: 768px) {
  .services-detail__list {
    padding: 52px 0;
  }
}
.services-detail__list .service-detail__item {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .services-detail__list .service-detail__item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 52px;
  }
}
.services-detail__list .service-detail__item:last-child {
  margin-bottom: 0;
}
.services-detail__list .service-detail__item .service-detail__image {
  display: flex;
  align-items: center;
}
.services-detail__list .service-detail__item .service-detail__image:after {
  content: "";
  background: #d6d6d6;
  width: 70px;
  height: 4px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .services-detail__list .service-detail__item .service-detail__image:after {
    display: none;
  }
}
.services-detail__list .service-detail__item .service-detail__image img {
  max-width: 180px;
}
.services-detail__list .service-detail__item .service-detail__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.services-detail__list .service-detail__item .service-detail__inner h2 {
  font-size: 2.5em;
  margin: 0;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .services-detail__list .service-detail__item .service-detail__inner h2 {
    font-size: 2rem;
  }
}
.services-detail__list .service-detail__item .service-detail__inner h3 {
  font-size: 1.8em;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .services-detail__list .service-detail__item .service-detail__inner h3 {
    font-size: 1.5rem;
  }
}
.services-detail__list .service-detail__item .service-detail__inner p {
  font-size: 1.2em;
  margin: 0;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .services-detail__list .service-detail__item .service-detail__inner p {
    font-size: 1.2rem;
  }
}
.services-detail__list .service-detail__item .service-detail__inner .product-detail--notes {
  border-left: 2px solid #000;
  padding-left: 20px;
}
.services-detail__list .service-detail__item .service-detail__inner .product-detail--notes p {
  font-size: 0.9em;
}

.about__intro .about__intro--map {
  position: relative;
  width: 100%;
}
.about__intro .about__intro--map img {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.about__intro .about__intro--map .map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  opacity: 0.7;
  z-index: 2;
}
.about__intro .about__intro--map .map-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.3;
  animation: halo 2s infinite;
}
.about__intro .about__intro--map .map-marker:nth-child(1) {
  animation-delay: 0s;
  top: 30%;
  left: 10%;
}
@media screen and (min-width: 1400px) {
  .about__intro .about__intro--map .map-marker:nth-child(1) {
    left: 15%;
  }
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .map-marker:nth-child(1) {
    top: 20%;
    left: 20%;
  }
}
.about__intro .about__intro--map .map-marker:nth-child(1)::before {
  animation-delay: 0s;
}
.about__intro .about__intro--map .map-marker:nth-child(2) {
  animation-delay: 0.4s;
  top: 70%;
  left: 20%;
}
@media screen and (min-width: 1400px) {
  .about__intro .about__intro--map .map-marker:nth-child(2) {
    left: 25%;
  }
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .map-marker:nth-child(2) {
    top: 5%;
  }
}
.about__intro .about__intro--map .map-marker:nth-child(2)::before {
  animation-delay: 0.4s;
}
.about__intro .about__intro--map .map-marker:nth-child(3) {
  animation-delay: 0.8s;
  top: 20%;
  left: 70%;
}
.about__intro .about__intro--map .map-marker:nth-child(3)::before {
  animation-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .map-marker:nth-child(3) {
    left: 80%;
  }
}
.about__intro .about__intro--map .map-marker:nth-child(4) {
  animation-delay: 1.2s;
  top: 10%;
  left: 60%;
}
.about__intro .about__intro--map .map-marker:nth-child(4)::before {
  animation-delay: 1.2s;
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .map-marker:nth-child(4) {
    top: 5%;
    left: 40%;
  }
}
.about__intro .about__intro--map .map-marker:nth-child(5) {
  animation-delay: 1.6s;
  top: 80%;
  left: 80%;
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .map-marker:nth-child(5) {
    top: 5%;
    left: 75%;
  }
}
.about__intro .about__intro--map .map-marker:nth-child(5)::before {
  animation-delay: 1.6s;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}
@keyframes halo {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.about__intro .about__intro--map .about__intro--inner {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f5f5f5;
  text-align: center;
  padding: 20px 32px;
}
@media screen and (max-width: 768px) {
  .about__intro .about__intro--map .about__intro--inner {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin-top: 32px;
  }
}
.about__intro .about__intro--map .about__intro--inner h2 {
  font-size: 1.5rem;
}

.section__expertise {
  text-align: center;
}
.section__expertise .expertises__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .section__expertise .expertises__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.section__expertise .expertises__grid .expertise__item {
  border-top: 1px solid #c2c2c2;
  padding: 52px 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section__expertise .expertises__grid .expertise__item {
    padding: 32px 20px;
  }
}

.section__team {
  text-align: center;
}
.section__team .swiper {
  margin-top: 52px;
}
.section__team .team__card img {
  clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0% 100%, 0% 0%);
  width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__team .team__card .team__card--content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__team .team__card .team__card--content .team__card--infos {
  flex-grow: 1;
  text-align: left;
  margin-top: 12px;
}
.section__team .team__card .team__card--content .team__card--infos h3 {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
.section__team .team__card .team__card--content svg {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.section__team .team__card .team__card--content svg:hover {
  opacity: 0.7;
}

.section__blog .section__blog--card {
  display: flex;
  align-items: center;
  gap: 52px;
  border: 1px solid #cccccc;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section__blog .section__blog--card {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 32px 20px;
  }
}
.section__blog .section__blog--card .section__blog--card-image {
  flex: 0 0 400px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .section__blog .section__blog--card .section__blog--card-image {
    flex: 1;
  }
}
.section__blog .section__blog--card .section__blog--card-image:before {
  content: "";
  background-image: url("/wp-content/themes/cyberzen/assets/img/blog.jpg");
  background-size: cover;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  position: absolute;
  left: -52px;
  top: -52px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section__blog .section__blog--card .section__blog--card-image:before {
    display: none;
  }
}
.section__blog .section__blog--card .section__blog--card-image img {
  width: 100%;
  border: 10px solid white;
}
@media screen and (max-width: 768px) {
  .section__blog .section__blog--card .section__blog--card-image img {
    border: none;
  }
}
.section__blog .section__blog--card h2 {
  margin: 0 0 12px 0;
}

.about__label {
  text-align: center;
}
.about__label .certification__group {
  justify-content: center;
  margin-top: 52px;
}

.section__stats--small {
  position: relative;
  text-align: center;
}
.section__stats--small .stats--small__group {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .section__stats--small .stats--small__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section__stats--small .effect-circle {
  position: absolute;
  width: 90%;
  max-width: 1360px;
  height: 120%;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: white;
  border-radius: 50%;
  box-shadow: inset 0px -4px 10px 0px rgba(115, 115, 115, 0.2), inset 0px -4px 180px 0px rgba(161, 161, 161, 0.2);
}
.section__stats--small .effect-circle:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 110%;
  bottom: -52px;
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  filter: blur(32px);
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
}
.section__stats--small .effect-circle:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 110%;
  top: -52px;
  transform: rotate(180deg);
  left: -5%;
  right: 0;
  height: 200px;
  background-size: cover;
  filter: blur(32px);
  background-image: url("/wp-content/themes/cyberzen/assets/img/wave.svg");
}
.section__stats--small .stats__card {
  text-align: center;
  padding: 0 32px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .section__stats--small .stats__card {
    padding: 20px 0;
  }
}
.section__stats--small .stats__card:nth-child(1), .section__stats--small .stats__card:nth-child(2), .section__stats--small .stats__card:nth-child(3) {
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .section__stats--small .stats__card:nth-child(1), .section__stats--small .stats__card:nth-child(2), .section__stats--small .stats__card:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 768px) {
  .section__stats--small .stats__card:nth-child(1) {
    border-right: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 768px) {
  .section__stats--small .stats__card:nth-child(3) {
    border-right: 1px solid #d9d9d9;
    border-bottom: none !important;
  }
}
.section__stats--small .stats__card h3,
.section__stats--small .stats__card span {
  position: relative;
  z-index: 2;
}
.section__stats--small .stats__card h3 {
  font-size: 2.8em;
  margin: 0;
}
.section__stats--small .stats__card span {
  font-weight: bold;
}

.blog__content {
  max-width: 700px;
  margin: -52px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .blog__content {
    padding: 0 20px;
  }
}
.blog__content .blog__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  margin-top: 32px;
  margin-bottom: 12px;
}
.blog__content .blog__author .blog__author__info {
  display: flex;
  flex-direction: column;
}
.blog__content .blog__author .blog__share {
  display: flex;
  gap: 20px;
}
.blog__content .blog__author .blog__share a {
  text-decoration: none;
}

.page__product {
  max-width: 960px;
  margin: 0 auto;
}
.page__product .post-thumbnail {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 52px auto;
  display: block;
}
.page__product .post-thumbnail img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 -32px 74px 6px rgba(0, 0, 0, 0.1);
}

.related__products .related__products--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
@media screen and (max-width: 768px) {
  .related__products .related__products--list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.related__products .related__products--list .product__item {
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .page__contact {
    padding: 0 20px;
  }
}
.page__contact .contact__row {
  display: flex;
  gap: 52px;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .page__contact .contact__row {
    gap: 32px;
    margin-bottom: 32px;
    flex-direction: column;
  }
}
.page__contact .contact__item {
  display: flex;
  flex-grow: 1;
  width: 100%;
  background: #f6f6f6;
  border-radius: 20px;
  padding: 32px;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.page__contact .contact__item .contact__item-icon {
  border: 1px solid #9b9b9b;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page__contact .contact__item .contact__item-icon:before {
  content: "";
  border: 2px solid #838383;
  opacity: 0.2;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page__contact .contact__item .contact__item-icon:after {
  content: "";
  border: 3px solid #afafaf;
  opacity: 0.2;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page__contact .contact__item .contact__item-icon .contact__item-icon-inner {
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page__contact .contact__item .contact__item-icon img {
  width: 32px;
  height: auto;
}
.page__contact .contact__item h3 {
  text-align: center;
  margin: 0;
  font-size: 1.8em;
  margin-top: 20px;
}
.page__contact .contact__item h4 {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}
.page__contact .contact__item p {
  text-align: center;
  font-weight: 400;
  margin: 0;
  width: 100%;
  overflow-wrap: break-word;
}
.page__contact .contact__map {
  position: relative;
  max-width: 960px;
  border-radius: 20px;
  margin: 0 auto 72px auto;
  display: block;
}
.page__contact .contact__map:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0) 0%, white 80%);
  z-index: 1;
}
.page__contact .contact__map img {
  width: 100%;
  height: auto;
}

.scramble {
  font-size: 4rem;
  color: #212121;
  margin: 1rem 0;
  min-height: 2em;
  font-weight: bold;
}

.link-border {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.link-border::before,
.link-border::after {
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.link-border::before {
  border-left-color: #333;
  border-bottom-color: #333;
  width: 0;
  height: 0;
  transition: width 0.3s ease-out, height 0.3s ease-out 0.3s;
}

.link-border::after {
  border-right-color: #333;
  border-top-color: #333;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  transition: height 0.3s ease-out, width 0.3s ease-out 0.3s;
}

.link-border:hover::before {
  width: 100%;
  height: 100%;
}

.link-border:hover::after {
  width: 100%;
  height: 100%;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-top: 72px;
}
@media screen and (max-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services__grid .services__grid--item {
  padding: 52px 20px;
  border-top: 1px solid #c2c2c2;
}
@media screen and (max-width: 480px) {
  .services__grid .services__grid--item {
    padding: 20px 20px 0 20px;
  }
}

.section__compare .grid {
  margin-top: 52px;
}
.section__compare .section__compare--list {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.section__compare .section__compare--list .section__compare--item {
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 32px 20px;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.section__compare .section__compare--list .section__compare--item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__compare .section__compare--list .section__compare--item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section__compare .section__compare--list .section__compare--item ul li {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 600;
}
.section__compare .section__compare--list .section__compare--item ul li:before {
  content: url("/wp-content/themes/cyberzen/assets/img/check.svg");
}
.section__compare .section__compare--list .section__compare--item:nth-child(2) {
  background: #f6f6f6;
}

.section__fixing .section__fixing--items-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
}
.section__fixing .section__fixing--items-list .section__fixing--item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section__fixing .section__fixing--items-list .section__fixing--item {
    align-items: flex-start;
  }
}
.section__fixing .section__fixing--items-list .section__fixing--item:after {
  content: "";
  background: rgb(217, 217, 217);
  background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgb(217, 217, 217) 69%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 100%);
  height: 90px;
  width: 3px;
  display: inline-block;
  margin: 0 auto;
}
.section__fixing .section__fixing--items-list .section__fixing--item:last-child:after {
  display: none;
}
.section__fixing .section__fixing--items-list .section__fixing--item .number {
  font-weight: 900;
  font-size: 3em;
}
.section__fixing .section__fixing--items-list .section__fixing--item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.section__fixing .section__fixing--items-list .section__fixing--item ul li {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.section__fixing .section__fixing--items-list .section__fixing--item ul li:before {
  content: url("/wp-content/themes/cyberzen/assets/img/check.svg");
}

.site-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-main ul li {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 600;
}
.site-main ul li:before {
  content: url("/wp-content/themes/cyberzen/assets/img/check.svg");
}

/** Blog grid **/
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0) 0px 10px 50px;
}
.blog-card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.blog-card:hover img {
  opacity: 0.8;
}
.blog-card a {
  text-decoration: none;
}
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.blog-card .blog-card__content {
  padding: 16px;
}
.blog-card .blog-card__more {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary-color);
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */