@font-face {
  font-family: 'DM Sans';
  src: url('../font/DMSans-Bold.woff2') format('woff2'),
    url('../font/DMSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../font/DMSans-Medium.woff2') format('woff2'),
    url('../font/DMSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../font/DMSans-Regular.woff2') format('woff2'),
    url('../font/DMSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../font/DMSans-SemiBold.woff2') format('woff2'),
    url('../font/DMSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Fonts */
:root {
  --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #020b1f;
  /* Background color for the entire website, including individual sections */
  --default-color: #fff;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fff;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #000;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #F6F6F6;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --gradient-color: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

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

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


.light-background {
  color: var(--surface-color) !important;
  background-color: var(--contrast-color) !important;
}

.gradient-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gradient-1 {
  background-image: url('../img/bg-gradient-1.webp');
}

.gradient-2 {
  background-image: url('../img/bg-gradient-2.webp');
}

.gradient-3 {
  background-image: url('../img/bg-gradient-3.webp');
}

.light-gradient-1 {

  background-image: url('../img/bg-light-gradient-1.webp');

}



.dark-background {
  --background-color: #020b1f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

.gradient-animate {

  position: relative;

  overflow: hidden;

  background: #020b1f;

}

.gradient-animate > * {

  position: relative;

  z-index: 2;

}

.hero-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  pointer-events: none;

  z-index: 1;

}

/* SPODNI MODRY OVAL */

.hero-glow-blue {

  width: 900px;

  height: 900px;

  background: #24377d;

  left: 50%;

  bottom: -450px;

  transform: translateX(-50%);

  opacity: .8;

  animation: floatBlue 8s ease-in-out infinite alternate;

}

/* STREDOVA FIALOVA */

.hero-glow-purple {

  width: 500px;

  height: 500px;

  background: #6b4aa8;

  left: 50%;

  top: 45%;

  transform: translate(-50%, -50%);

  opacity: .65;

  animation: floatPurple 6s ease-in-out infinite alternate;

}

/* HORNI SVETLEJSI BOD */

.hero-glow-pink {

  width: 220px;

  height: 220px;

  background: #b96ad9;

  left: 50%;

  top: 22%;

  transform: translateX(-50%);

  opacity: .8;

  animation: pulsePink 4s ease-in-out infinite alternate;

}

/* ANIMACE */

@keyframes floatBlue {

  0% {

    transform: translateX(-50%) scale(1);

  }

  50% {

    transform: translateX(-46%) scale(1.18);

  }

  100% {

    transform: translateX(-54%) scale(1.08);

  }

}

@keyframes floatPurple {

  0% {

    transform: translate(-50%, -50%) scale(1);

  }

  50% {

    transform: translate(-57%, -44%) scale(1.25);

  }

  100% {

    transform: translate(-44%, -56%) scale(1.08);

  }

}

@keyframes pulsePink {

  0% {

    transform: translateX(-50%) scale(1);

    opacity: .45;

  }

  50% {

    transform: translateX(-42%) scale(1.55);

    opacity: 1;

  }

  100% {

    transform: translateX(-58%) scale(1.15);

    opacity: .6;

  }

}

/* MOBILE */

@media (max-width: 768px) {

  .hero-glow-blue {

    width: 550px;

    height: 550px;

    bottom: -260px;

  }

  .hero-glow-purple {

    width: 320px;

    height: 320px;

  }

  .hero-glow-pink {

    width: 140px;

    height: 140px;

  }

}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: -0.05rem;
}

@media (max-width: 768px) {
  body {
  font-size: 14px;
}
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.1rem;
}

.h2,
h2 {
  font-size: 48px;
}

.h3,
h3 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 18px;
}


.lead {
  font-size: 24px !important;
  font-weight: 600;
}

@media (max-width: 768px) {

  .h2,
  h2 {
    font-size: 30px;
  }

  .h3,
  h3 {
    font-size: 20px;
  }


  .lead {
    font-size: 20px !important;
    font-weight: 600;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #376DF9 0%, #DD3660 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block !important;


  width: fit-content;
}

ul,
ol {
  padding-left: 20px;
  list-style-position: outside;
}

@media (max-width: 768px) {

  ul,
  ol {
    padding-left: 15px;
  }

}

.list-reset {
  padding-left: 0;
  list-style-position: inside;
}

.btn {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--gradient-color);
  border: 1px solid transparent;
  background: linear-gradient(#191e28, #191e28) padding-box, linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(55, 109, 249, 0.4);
  color: #fff;
}

/* SECONDARY BUTTON */

.btn-secondary {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 28px;

  border-radius: 12px;

  font-size: 15px;

  font-weight: 600;

  color: inherit;

  border: 1px solid transparent;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;

  transition: .25s;

}

.btn-secondary:hover {

  transform: translateY(-1px);

  box-shadow: 0 8px 20px rgba(55, 109, 249, .15);

  color: inherit;

}


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

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(25, 30, 40, 0.85);
  --default-color: #ffffff;
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 15px 20px;
  transition: all 0.5s;
  border-radius: 35px;
  margin: 25px 50px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: fixed;
  isolation: isolate;

  z-index: 999;
}

.header .container-fluid {

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.header .logo {
  line-height: 1;
}

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


@media (max-width: 1200px) {
  .header .logo img {
    max-height: 25px;
    margin-right: 8px;
  }
}


.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 12px;
  background: var(--gradient-color);
  border: 1px solid transparent;
  background:
    linear-gradient(#191e28, #191e28) padding-box,
    linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}

.header .cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(55, 109, 249, 0.4);
  color: #fff;
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(25, 30, 40, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */
@media (min-width: 1200px) {

  .navmenu {
    padding: 0;
    position: static;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
  }

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

  /* LINKS */
  .navmenu a,
  .navmenu a:focus {

    color: var(--nav-color);
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: space-between;

    white-space: nowrap;

    position: relative;

    padding: 6px 10px !important;
    margin: 0 5px;

    border-radius: 8px;

    transition: .3s;
  }

  .navmenu a i,
  .navmenu a:focus i {

    font-size: 12px;
    line-height: 0;

    margin-left: 5px;

    transition: .3s;
  }

  /* LINK BACKGROUND */
  .navmenu a::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(27, 32, 46);

    border-radius: 8px;

    opacity: 0;

    transition: .3s;

    z-index: -1;
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after {

    opacity: 1;
  }

  /* ACTIVE / HOVER TEXT */
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {

    background: linear-gradient(90deg, #376DF9 0%, #DD3660 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;
  }

  /* MEGA MENU */
  .navmenu .dropdown-mega {
    position: relative;
  }

  .navmenu .mega-menu {

    position: fixed;

    top: -25px;
    left: 0;

    width: 100vw;

    margin-left: calc(50% - 50vw);

    padding-top: 150px;
    padding-bottom: 40px;

    background: rgba(25, 30, 40, 1);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, .04);

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

    z-index: -1;
  }

  .navmenu .mega-menu::before {

  content: "";

  position: absolute;

  top: 119px;

  left: 0;

  width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, .09);


  pointer-events: none;

}

/* PAGE OVERLAY */

body::after {

  content: "";

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, .55);

  opacity: 0;

  visibility: hidden;

  transition: .3s ease;

  pointer-events: none;

  z-index: 998;

}

/* ACTIVE */

body.mega-menu-active::after {

  opacity: 1;

  visibility: visible;

}




  .navmenu .mega-menu .row {

    align-items: flex-start;

  }

  /* SHOW */
  .navmenu .dropdown-mega:hover .mega-menu {

    opacity: 1;
    visibility: visible;
  }

  /* CONTENT ABOVE OVERLAY */
  .navmenu .mega-menu .container-fluid {

    max-width: 1680px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
  }

  /* COLUMNS */
  .mega-col {

    position: relative;

    padding: 0 40px;

  }

  .navmenu .mega-menu .row {

  align-items: stretch;

}

.mega-col:not(:last-child)::after {

  content: "";

  position: absolute;

  top: -30px;
  bottom: -37px;

  right: 0;

  width: 1px;

  background: rgba(255,255,255,.05);

}

  /* TITLES */
  .mega-col h5 {

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 28px;
  }

  /* CARD */
  .mega-card {

    display: flex !important;
    align-items: center;

    gap: 14px;

    padding: 16px !important;
    margin: 0 0 14px !important;

    border-radius: 18px !important;

    background: rgba(255, 255, 255, .05);

    transition: .3s !important;

    text-decoration: none;

    position: relative;

    overflow: hidden;
    display: flex !important;

    align-items: center;

    gap: 10px;
  }

  .mega-card:hover {

    background: rgba(255, 255, 255, .08);

    transform: translateY(-2px);
  }

  /* ICON */
  .mega-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255, 255, 255, .05);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
  }

  .mega-content {

    flex: 1;

    min-width: 0;

    text-align: left;

  }

  .mega-content strong,

  .mega-content span {

    display: block;

    text-align: left;

  }

  .mega-content strong {

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

  }

  .mega-icon img {

    width: 20px;
    height: 20px;

    object-fit: contain;
  }

  /* TEXT */
  .mega-card strong {

    display: block;

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 2px;
  }

  .mega-card span {

    display: block;

    color: rgba(255, 255, 255, .45);

    font-size: 12px;
    line-height: 1.4;
  }

}

/* DEFAULT */

.mobile-menu {

  display: none;

}

/* MOBILE */

@media (max-width: 1199px) {

  .mobile-menu {

    display: block;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    padding: 110px 24px 40px;

    background: rgba(9, 16, 29, 1);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow-y: auto;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

    z-index: 1000;

  }

}

/* MOBILE */
@media (max-width: 1199px) {

  /* DESKTOP MENU OFF */
  .navmenu>ul {
    display: none !important;
  }

  /* NAV */
  .navmenu {

    display: flex;

    justify-content: flex-end;

    flex: 1;

    position: static;

  }

  /* HEADER */
  .header {

    margin: 0;

    padding: 10px;

    border-radius: 0;

  }

  /* DESKTOP CTA OFF */
  .header .cta-btn {

    display: none;

  }

  /* MOBILE CTA */
  .mobile-cta {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 30px;

    padding: 10px 20px;

    font-size: 15px;
    font-weight: 600;

    color: #fff !important;

    border: 1px solid transparent;

    background:
      linear-gradient(#191e28, #191e28) padding-box,
      linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box !important;

    border-radius: 12px;

    transition: .25s;

    cursor: pointer;

    text-decoration: none;

  }

  .mobile-cta:hover {

    transform: translateY(-1px);

    box-shadow: 0 8px 20px rgba(55, 109, 249, 0.4);

    color: #fff !important;

  }

  /* TOGGLE */
  .mobile-nav-toggle {

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .05);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 26px;

    cursor: pointer;

    position: relative;

    z-index: 1002;

  }

  /* MOBILE MENU */
  .mobile-menu {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    padding: 80px 24px 40px;

    background: rgba(9, 16, 29, 1);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 1000;

  }

.mobile-menu {

  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

}

.mobile-menu-bg-logo {

  position: relative;

  display: block;

  margin-top: 40px;

  margin-left: 0px;

  width: 100px;


  pointer-events: none;

}

.mobile-menu > *:not(.mobile-menu-bg-logo) {

  position: relative;

  z-index: 1;

}
  

  /* ACTIVE */
  .mobile-nav-active .mobile-menu {

    opacity: 1;

    visibility: visible;

  }

  /* MAIN LINKS */
  .mobile-menu>a,
  .mobile-group-toggle {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 22px;

    margin-top: 10px;

    border-radius: 15px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .05);

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

  }

  /* GROUP */
  .mobile-group {

    margin-bottom: 0;

  }

  /* BUTTON */
  .mobile-group-toggle {

    background: rgba(255, 255, 255, .06);

    cursor: pointer;

    border: 0;

  }

  /* ICON */
  .mobile-group-toggle i {

    transition: transform .35s cubic-bezier(.4, 0, .2, 1);

  }

  /* ROTATE */
  .mobile-group.active .mobile-group-toggle i {

    transform: rotate(45deg);

  }

  /* CONTENT ANIMATION */
  .mobile-group-content {

    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);

  }

  /* INNER */
  .mobile-group-content-inner {

    overflow: hidden;

    padding-top: 0;

    transition: padding .3s ease;

  }

  /* OPEN */
  .mobile-group.active .mobile-group-content {

    grid-template-rows: 1fr;

  }

  .mobile-group.active .mobile-group-content-inner {

    padding-top: 10px;

  }

  /* LABEL */
  .mobile-label {

    display: block;

    font-size: 16px;
    font-weight: 600;

    margin: 22px 18px 10px

  }

  /* GRID */
  .mobile-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 0px;

  }

/* MOBILE SUBLINK */
.mobile-group-content a {

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 18px;

  margin-bottom: 5px;

  border-radius: 18px;

  background: rgba(255,255,255,.03);

  border: 1px solid rgba(255,255,255,.04);

  color: rgba(255,255,255,.92);

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: .25s ease;
}

/* ICON */
.mobile-group-content a img {

  width: 20px;
  height: 20px;

  object-fit: contain;

  flex-shrink: 0;

  opacity: .95;
}

/* HOVER */
.mobile-group-content a:hover {

  background: rgba(255,255,255,.06);

  transform: translateY(-1px);
}

  /* CLOSE ICON */
  .mobile-nav-active .mobile-nav-toggle {

    position: relative;

    z-index: 1003;

  }

  /* MOBILE GRID */
  @media (max-width: 576px) {

    .mobile-grid {

      grid-template-columns: 1fr;

    }

  }

}

/* ==========================================
   FOOTER
========================================== */

.footer {
    position: relative;
    background: #020b1f;
    overflow: hidden;
    padding: 0 50px;
}

/* ==========================================
   NEWSLETTER
========================================== */

.footer-newsletter {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 90px 0;
}

.footer-newsletter h2 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-newsletter h2 span {
    background: linear-gradient(
        90deg,
        #376DF9,
        #DD3660
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-newsletter p {
    max-width: 650px;
    margin: 0 auto 35px;

    color: rgba(255,255,255,.65);

    font-size: 18px;
    line-height: 1.7;
}

.footer-logo {

    margin-bottom: 24px;

}

.footer-logo img {

    width: 70px;

    height: auto;

    opacity: .9;

}

/* ==========================================
   FORM
========================================== */

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    max-width: 500px;

    height: 50px;

    padding: 0 20px;

    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.03);

    color: #fff;

    transition: .3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(55,109,249,.5);
}

.newsletter-form button {

    height: 50px;

    padding: 0 24px;

    background: transparent;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 12px;

    color: #fff;

    transition: all .3s ease;

}

.newsletter-form button:hover {

    border: 1px solid transparent;

    background:

        linear-gradient(#020b1f, #020b1f) padding-box,

        linear-gradient(90deg, #376DF9, #DD3660) border-box;

    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(55, 109, 249, 0.4);

}

/* ==========================================
   BOTTOM
========================================== */

.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 100vw;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #376DF9,
        #DD3660,
        #376DF9,
        transparent
    );
}


.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 28px 0;

    flex-wrap: wrap;
}

.footer-contact,
.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-contact a,
.footer-legal a,
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: .3s;
}

.footer-contact a:hover,
.footer-legal a:hover {
    color: #fff;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

  .footer {
    padding: 0 0;
}

  .footer-links {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 25px 15px;

    text-align: left;
  }

  .footer-contact,
  .footer-legal {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

  .footer-copy {

    grid-column: 1 / -1;

    margin-top: 10px;

    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);

    text-align: center;
  }

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

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

.section-divider {
  height: 2px;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );
}

.text-divider {

  width: 100%;

  height: 1px;

  margin: 20px 0;

  background: linear-gradient(

    90deg,

    #376DF9 0%,

    #DD3660 100%

  );

}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 200px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-no {
}

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

.hero-bottom-text {

    position: absolute;

    bottom: 40px;

    font-size: 16px;
    font-weight: 600;


    z-index: 10;

}

.hero-bottom-left {

    left: 60px;

}

.hero-bottom-right {

    right: 60px;

    text-align: right;

}

@media (max-width: 768px) {

  .hero-bottom-text {

    position: absolute;

    bottom: 40px;

    font-size: 14px;
    font-weight: 600;


    z-index: 10;

}

.hero-bottom-left {

    left: 30px;

}

.hero-bottom-right {

    right: 30px;


}

}

.hero-visual {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  max-width: 1000px;
  height: 800px;

  pointer-events: none;
  z-index: 1;
}

.hero-device-scanner {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 1000px;
  width: 100%;

  z-index: 2;
  pointer-events: none;
}

@media (max-height: 900px) {

  .hero-device-scanner {

    max-width: 500px;

  }

}

@media (max-height: 760px) {

  .hero-device-scanner {

    max-width: 400px;

  }

}

@media (max-width: 768px) {

  .hero-visual {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    width: 100%;

    height: 50%;

    transform: none;

    overflow: hidden;

  }

  .hero-device-scanner {

    position: absolute;

    bottom: -20px;

    left: 50%;

    transform: translateX(-50%);

    width: 110%;

    max-width: none;

  }

}


/* AI Scanner */

.hero-ai-scanner {

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  border: 2px solid rgba(55, 109, 249, .8);

  background:
    radial-gradient(
      circle,
      rgba(55, 109, 249, .12) 0%,
      rgba(55, 109, 249, .05) 50%,
      transparent 100%
    );

  backdrop-filter:
    brightness(1.35)
    contrast(1.2);

  box-shadow:
    0 0 20px rgba(55,109,249,.5),
    0 0 50px rgba(55,109,249,.25),
    inset 0 0 20px rgba(55,109,249,.25);

  overflow: hidden;

  z-index: 10;

  pointer-events: none;

  animation: scannerMove 14s ease-in-out infinite;
}

/* Scan line */

.hero-ai-scanner::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #376DF9,
    #DD3660,
    transparent
  );

  box-shadow:
    0 0 12px #376DF9,
    0 0 24px #DD3660;

  animation: scannerLine 2s linear infinite;
}

/* Crosshair */

.hero-ai-scanner::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      rgba(255,255,255,.08),
      rgba(255,255,255,.08)
    ) center/1px 100% no-repeat,

    linear-gradient(
      90deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.08)
    ) center/100% 1px no-repeat;

}

/* Scanner movement */

@keyframes scannerMove {

  0% {
    left: 180px;
    top: 120px;
  }

  20% {
    left: 520px;
    top: 100px;
  }

  40% {
    left: 600px;
    top: 320px;
  }

  60% {
    left: 400px;
    top: 500px;
  }

  80% {
    left: 220px;
    top: 380px;
  }

  100% {
    left: 180px;
    top: 120px;
  }

}

@keyframes scannerLine {

  from {
    top: 0;
  }

  to {
    top: calc(100% - 2px);
  }

}

/* Mobile */

@media (max-width: 768px) {

  .hero-ai-scanner {

    width: 60px;

    height: 60px;

  }

}

@media (max-width: 768px) {

  .hero-ai-scanner {
    width: 70px;
    height: 70px;

    animation: scannerMoveMobile 12s ease-in-out infinite;
  }

}

@keyframes scannerMoveMobile {

  0% {
    left: 25%;
    top: 45%;
  }

  25% {
    left: 65%;
    top: 40%;
  }

  50% {
    left: 70%;
    top: 65%;
  }

  75% {
    left: 35%;
    top: 70%;
  }

  100% {
    left: 25%;
    top: 45%;
  }

}

.hero-device {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 800px;
  width: 100%;

  z-index: 2;
  pointer-events: none;

  animation:
    float 6s ease-in-out infinite,
    glow 5s ease-in-out infinite;
}

@media (max-height: 900px) {

  .hero-device {

    max-width: 500px;

  }

}

@media (max-height: 760px) {

  .hero-device {

    max-width: 400px;

  }

}

@keyframes float {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-12px);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
  }
}

@keyframes glow {
  0% {
    filter:
      drop-shadow(0 0 20px rgba(55, 109, 249, .0)) drop-shadow(0 0 40px rgba(221, 54, 96, .0));
  }

  50% {
    filter:
      drop-shadow(0 0 40px rgba(55, 109, 249, .0)) drop-shadow(0 0 90px rgba(221, 54, 96, .0)) drop-shadow(0 0 140px rgba(140, 80, 255, .0));
  }

  100% {
    filter:
      drop-shadow(0 0 20px rgba(55, 109, 249, .0)) drop-shadow(0 0 40px rgba(221, 54, 96, .0));
  }
}

.hero::after {

  content: "";

  position: absolute;

  inset: 0;

  background-color: #020b1f;

  z-index: 0;

  pointer-events: none;

}

.hero-no::after {

  content: none;

}

@media (max-width: 768px) {

  .hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }


  .hero-device {
    max-width: 90%;
  }

}



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

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 16px;
}

@media (max-width: 768px) {

  .hero h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
  }

  .hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 14px;
  }
}


.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

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

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

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

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

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

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

  .hero p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

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

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

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

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

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

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

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

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

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

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.feature-box {
  background: #fff;
  padding: 20px;
  position: relative;
  transition: .3s;
  border: 1px solid rgba(0, 0, 0, 0);
}

.feature-box.dark {
  color: var(--default-color);
 background-color: var(--background-color);
}


.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, .05);
  transition: .3s;
}

.feature-box h3 {

  min-height: 55px;

  display: flex;

  align-items: flex-start;

  margin-bottom: 20px;

}

.feature-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  background-image: url('../img/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dark-box {

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .04);

  padding: 20px;

  height: 100%;

  transition: .3s;

}

.dark-box-bottom {

  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, .08);

}

.icon-box {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 20px;
}

.icon-box .icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  object-fit: contain;
}

.icon-box p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {

  .icon-box {

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;
  }

  .icon-box p {

    text-align: left;
    margin: 0;
  }

  .icon-box .icon-svg {

    margin: 0 0 20px 0;
  }

  .icon-box:last-child {

    align-items: flex-start;
  }

}

@media (max-width: 768px) {

  .result-grid {

    justify-content: flex-start !important;

  }

}

.mega-col-stretch {

  display: flex;

  flex-direction: column;

}

.mega-col-stretch .mega-card {

  flex: 1;

}

.soc-card {

  height: 100%;

  background: #fff;

  overflow: hidden;

  transition: .3s;
}

.soc-card:hover {

  transform: translateY(-4px);
}

.soc-card-header {
  position: relative;

  min-height: 220px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  color: #fff;
}

.soc-card-header p {

  margin: 0;

  color: rgba(255,255,255,.85);
}

.soc-card-body {

  padding: 20px;

}

.soc-card-body h5 {

  font-weight: 700;

  margin-bottom: 20px;
}

@media (max-width: 991px) {

  .soc-card-header {

    min-height: 180px;

    padding: 20px;
  }

  .soc-card-body {

    padding: 20px;
  }

}

.soc-icon {

  position: absolute;

  top: 30px;

  right: 30px;

  width: 64px;

  height: 64px;

  opacity: 1 !important;

  visibility: visible !important;

  color: #fff;

  fill: none;

  z-index: 5;

}

@media (max-width: 991px) {

  .soc-icon {

    width: 60px;

    height: 60px;

  }

}



.incident-flow {

  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  margin: 80px 0 100px;
}

.incident-line {

  position: absolute;

  top: 40px;

  left: 60px;

  right: 60px;

  height: 2px;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );

  z-index: 0;
}

.incident-step {

  position: relative;

  z-index: 2;

  flex: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}

.incident-svg {

  width: 80px;

  height: 80px;

  margin-bottom: 15px;

  transition: .3s ease;
}

.incident-step:hover .incident-svg {

  transform: translateY(-3px) scale(1.05);
}

.incident-step span {

  font-size: 16px;

  font-weight: 600;

  color: rgba(255,255,255,.85);
}

@media (max-width: 991px) {

  .incident-flow {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin: 50px 0 70px;
  }

  .incident-line {

    display: none;
  }

}

@media (max-width: 768px) {

  .incident-flow {

    grid-template-columns: repeat(2, 1fr);
  }

  .incident-svg {

    width: 70px;

    height: 70px;
  }

  .incident-step span {

    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .incident-flow {

    grid-template-columns: 1fr;
  }

}

.service-stat {

  text-align: center;
}

.service-stat-icon {

  width: 64px;

  height: 64px;

  margin-bottom: 15px;
}

.service-stat h5 {

  font-size: 24px;

  margin-bottom: 5px;
}

.service-stat p {

  margin: 0;

  color: rgba(0,0,0,.65);
}

.service-card {

  height: 100%;

  background: #fff;

  overflow: hidden;
}

.service-card-header {

  padding: 20px;

  min-height: 210px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;
}

.service-card-body {

  padding: 20px;
}

.service-card-body ol {

  margin: 0;

  padding-left: 10px;
}

@media (max-width: 991px) {

  .service-card-header {

    min-height: auto;

    padding: 20px;
  }

  .service-card-body {

    padding: 20px;
  }

}

@media (max-width: 768px) {

  .service-stat {

    margin-bottom: 10px;
  }

  .service-stat-icon {

    width: 56px;

    height: 56px;
  }

}

.sla-table {

  max-width: 900px;

  margin: 0 auto;
}

.sla-top {

  display: grid;

  grid-template-columns: 1fr 1.6fr;

  gap: 4px;

  margin-bottom: 4px;
}

.sla-title,
.sla-info {

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .04);

  padding: 20px;
}

.sla-title {

  display: flex;

  align-items: center;
}

.sla-title h3 {

  margin: 0;
}

.sla-info {

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;
}

.sla-info p {

  margin: 0;

  color: #fff;

  font-size: 18px;
}

.sla-header {

  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );

  color: #fff;

  font-size: 15px;

  font-weight: 600;

  padding: 12px 20px;

  margin-bottom: 4px;
}

.sla-subheader {

  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 4px;

  margin-bottom: 4px;
}

.sla-subheader div {

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .04);

  padding: 10px 20px;

  color: rgba(255,255,255,.7);
}

.sla-row {

  display: grid;

  grid-template-columns: 1.2fr 1fr 1fr;

  gap: 4px;

  margin-bottom: 4px;
}

.sla-row > div {

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .04);

  padding: 14px 20px;

  color: #fff;
}

.sla-priority {

  font-weight: 600;
}

.sla-time {

  display: flex;

  align-items: center;

  gap: 10px;
}

.sla-time img {

  width: 18px;

  height: 18px;

  flex-shrink: 0;
}

.sla-footer {

  margin-top: 8px;

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .04);

  padding: 20px;

  color: rgba(255,255,255,.85);

  line-height: 1.8;
}


/* MOBILE */

@media (max-width: 768px) {

  .sla-top {

    grid-template-columns: 1fr;
  }

  .sla-title,
  .sla-info {

    padding: 20px;
  }

  .sla-info p {

    font-size: 16px;
  }

  .sla-header,
  .sla-subheader {

    display: none;
  }

  .sla-row {

    display: block;

    margin-bottom: 12px;
  }

  .sla-priority {

    background: linear-gradient(
      90deg,
      #376DF9 0%,
      #DD3660 100%
    ) !important;

    color: #fff;

    font-weight: 600;

    padding: 14px 18px !important;
  }

  .sla-time {

    padding: 14px 18px !important;
  }

  .sla-time:first-of-type::before {

    content: "Zahájení";

    display: block;

    width: 100%;

    color: rgba(255,255,255,.6);

    font-size: 12px;

    margin-bottom: 6px;
  }

  .sla-time:last-of-type::before {

    content: "Vyřešení";

    display: block;

    width: 100%;

    color: rgba(255,255,255,.6);

    font-size: 12px;

    margin-bottom: 6px;
  }

  .sla-time {

    flex-wrap: wrap;
  }

  .sla-footer {

    padding: 16px;

    font-size: 13px;
  }

}

.threat-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.threat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 20px;
}

.threat-image {
  min-height: 420px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.threat-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.threat-content ul {
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .threat-row {
    grid-template-columns: 1fr;
  }

  .threat-image {
    min-height: 280px;
  }

  /* druhý blok otočí pořadí */
  .threat-row:nth-child(2) .threat-content {
    order: 2;
  }

  .threat-row:nth-child(2) .threat-image {
    order: 1;
  }

}

@media (max-width: 768px) {

  .threat-content {
    padding: 25px;
  }

  .threat-image {
    min-height: 220px;
  }

}

.service-scope-section {
  padding: 0;
}

.service-scope-bg {
  position: relative;

  overflow: hidden;

  padding: 100px 80px;

  min-height: 700px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-scope-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4,10,20,.82) 0%,
      rgba(4,10,20,.72) 50%,
      rgba(4,10,20,.82) 100%
    );
}

.service-scope-bg .row {
  z-index: 2;
}

.scope-box {
  position: relative;

  height: 100%;

  color: #fff;
}

.scope-icon {
  margin-bottom: 35px;
}

.scope-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}


.scope-note {
  margin-top: 35px;

  color: rgba(255,255,255,.75);

  font-size: 14px;
}

@media (max-width: 1199px) {

  .service-scope-bg {
    padding: 80px 50px;
  }


}

@media (max-width: 991px) {

  .service-scope-bg {
    padding: 60px 30px;
  }

  .scope-box h2 {
    font-size: 34px;
  }

  .scope-icon img {
    width: 64px;
    height: 64px;
  }

}

@media (max-width: 768px) {

  .service-scope-bg {

    padding: 50px 25px;

    background-position: center center;
  }

  .scope-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .scope-icon {
    margin-bottom: 25px;
  }

  .scope-icon img {
    width: 56px;
    height: 56px;
  }

  .scope-note {
    margin-top: 20px;
  }

}

.incident-process {

  position: relative;

  padding: 70px 50px;

  overflow: hidden;
}

.incident-process-line {

  position: absolute;

  left: 0;
  right: 0;
  top: 50%;

  height: 2px;

  transform: translateY(-50%);

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );

  z-index: 1;
}

.incident-process-grid {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 70px 40px;
}

.process-item {

  color: #fff;
}

.process-icon {

  width: 40px;
  height: 40px;

  margin-bottom: 25px;

  object-fit: contain;
}

.process-item p {

  margin: 0;

  line-height: 1.6;
}

.process-item strong {

  font-weight: 700;
}

.process-item:nth-child(6) {
  grid-column: 1;
}

.process-item:nth-child(7) {
  grid-column: 2;
}

.process-item:nth-child(8) {
  grid-column: 3;
}

.process-item:nth-child(9) {
  grid-column: 4;
}

@media (max-width: 1199px) {

  .incident-process-grid {

    grid-template-columns: repeat(4, 1fr);
  }

  .process-item:nth-child(n) {
    grid-column: auto;
  }

}

@media (max-width: 991px) {

  .incident-process {

    padding: 40px 30px;
  }

  .incident-process-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 40px 30px;
  }

  .incident-process-line {
    display: none;
  }

}

@media (max-width: 576px) {

  .incident-process-grid {

    grid-template-columns: 1fr;
  }

  .process-icon {

    width: 54px;
    height: 54px;

    margin-bottom: 20px;
  }

}

.sla-light-table {

  background: #fff;

  border: 1px solid #e8e8e8;

  overflow: hidden;
}

.sla-light-header {

  display: grid;

  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;

  background: #fafafa;

  border-bottom: 1px solid #e8e8e8;

  font-weight: 700;
}

.sla-light-header div {

  padding: 18px 20px;

  border-right: 1px solid #e8e8e8;
}

.sla-light-header div:last-child {

  border-right: 0;
}

.sla-light-row {

  display: grid;

  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;

  border-bottom: 1px solid #e8e8e8;
}

.sla-light-row > div {

  padding: 22px 20px;

  border-right: 1px solid #e8e8e8;
}

.sla-light-row > div:last-child {

  border-right: 0;
}

.sla-light-value {

  display: flex;

  align-items: center;

  gap: 12px;
}

.sla-light-value img {

  width: 18px;

  height: 18px;

  flex-shrink: 0;
}

.sla-light-note {


  text-align: center;

  color: rgba(0,0,0,.65);
}

@media (max-width: 991px) {

  .sla-light-header {

    display: none;
  }

  .sla-light-row {

    display: block;

    margin-bottom: 20px;

    border: 1px solid #e8e8e8;
  }

  .sla-light-row > div {

    border-right: 0;

    border-bottom: 1px solid #e8e8e8;
  }

  .sla-light-row > div:last-child {

    border-bottom: 0;
  }

}

.reporting-section {

  position: relative;

  overflow: hidden;

  padding-bottom: 0;

  min-height: 900px;
}

.reporting-section .container {

  position: relative;

  z-index: 2;
}

.reporting-section h2 {

  margin-bottom: 20px;
}

.reporting-bg-image {

  position: absolute;

  left: 50%;

  bottom:0;

  transform: translateX(-50%);

  width: min(950px, 90vw);

  height: auto;

  pointer-events: none;

  z-index: 1;
}

.reporting-section .icon-box {

  background: transparent;

  border: 0;

  position: relative;

  z-index: 3;
}

.reporting-section .icon-svg {

  width: 48px;

  height: 48px;

  margin-bottom: 20px;
}

.reporting-section h5 {

  margin-bottom: 12px;
}

.reporting-section p {

  margin-bottom: 0;

  color: rgba(255,255,255,.8);
}

@media (max-width: 1199px) {

  .reporting-section {

    min-height: 760px;
  }

  .reporting-bg-image {

    width: 750px;

    bottom: 0;
  }

}

@media (max-width: 991px) {

  .reporting-section {

    min-height: auto;

    padding-bottom: 320px;
  }

  .reporting-bg-image {

    width: 620px;

    bottom: 0;
  }

}

@media (max-width: 768px) {

  .reporting-section {

    padding-bottom: 220px;
  }

  .reporting-bg-image {

    width: 360px;

    bottom: 0;
  }


}

@media (max-width: 576px) {

  .reporting-section {

    padding-bottom: 180px;
  }

  .reporting-bg-image {

    width: 280px;

    bottom: 0;
  }

}

.advanced-grid {
  margin-top: 80px;
}

.advanced-card {

  position: relative;

  padding: 20px;

  background: rgba(255,255,255,.04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,.08);

  transition: .3s;
}

.advanced-card:hover {

  transform: translateY(-4px);

  border-color: rgba(255,255,255,.15);
}

.advanced-icon {

  width: 64px;
  height: 64px;

  margin-bottom: 35px;
display: block;
  object-fit: contain;
}

.advanced-card p:last-child {

  margin-bottom: 0;
}

.advanced-card strong {

  font-weight: 700;
}

@media (max-width: 991px) {

  .advanced-grid {
    margin-top: 50px;
  }

  .advanced-card {

    padding: 25px;
  }

  .advanced-icon {

    width: 56px;
    height: 56px;

    margin-bottom: 25px;
  }
}

.soar-section {

  overflow: hidden;

}

.soar-content {

  padding-right: 80px;

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.soar-icon {

  width: 110px;

  height: 110px;

  object-fit: contain;

  margin-bottom: 40px;

}

.soar-content p:last-child {

  margin-bottom: 0;

}


/* RIGHT SIDE */

.soar-right {

  display: flex;

  flex-direction: column;

  height: 100%;

}

.soar-box {

  background: #fff;

  padding: 20px;

  position: relative;

  transition: .3s;

  border: 1px solid rgba(0, 0, 0, .08);

}

.soar-box + .soar-box {

  position: relative;

}

.soar-box + .soar-box::before {

  content: "";

  position: absolute;

  top: -1px;

  left: 0;

  width: 100%;

  height: 1px;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );

  z-index: 2;

}

.soar-box li:last-child {

  margin-bottom: 0;

}



/* MOBILE */

@media (max-width: 991px) {

  .soar-content {

    padding-right: 0;

    margin-bottom: 40px;

  }

  .soar-icon {

    width: 80px;

    height: 80px;

    margin-bottom: 25px;

  }

  .soar-box {

    padding: 20px;

  }

}

.fd-card {

  display: flex;

  flex-direction: column;

}

.fd-card-header {

  min-height: 230px;

  padding: 20px;

  margin: -20px -20px 20px -20px;

  display: flex;

  align-items: flex-end;

}

.fd-card-header h3 {

  margin: 0;

}

.fd-card-body {

  display: flex;

  flex-direction: column;

  flex: 1;

}


.fd-card-body .btn-secondary {

  margin-top: auto;

  align-self: flex-start;

}



@media (max-width: 991px) {

  .fd-card-header {

    min-height: 180px;

  }

}

.compliance-section {
  position: relative;
  overflow: hidden;
}

.compliance-image {

  position: absolute;

  right: -120px;

  bottom: 0;

  width: 48%;

  max-width: 550px;

  height: auto;

  z-index: 1;

  pointer-events: none;

}

.compliance-section .container {

  position: relative;

  z-index: 2;

}

.compliance-tag {

  min-width: 120px;

  padding: 14px 30px;

  text-align: center;

  border-radius: 14px;

  font-weight: 600;

  color: #fff;

  background:
    linear-gradient(#020b1f, #020b1f) padding-box,
    linear-gradient(90deg, #376DF9 0%, #DD3660 100%) border-box;

  border: 1px solid transparent;

  transition: .3s;

}

.compliance-tag:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(55,109,249,.25);

}

@media (max-width: 768px) {

  .compliance-tag {

    min-width: 100px;

    padding: 12px 20px;

    margin-bottom: 10px;

  }

}

.comparison-table {

  max-width: 1000px;

  margin: 0 auto;

}

.comparison-table .sla-light-header {

  grid-template-columns: 1.2fr 1fr 1.5fr;

}

.comparison-table .sla-light-row {

  grid-template-columns: 1.2fr 1fr 1.5fr;

}

.comparison-table .sla-light-row > div:nth-child(2),

.comparison-table .sla-light-header > div:nth-child(2) {

  color: #376DF9;

  font-weight: 600;

}

@media (max-width: 991px) {

  .comparison-table .sla-light-row {

    display: block;

  }

}

.clients-advanced .row:last-child {
  align-items: center;
}

.client-logo-card {

  position: relative;

  height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #000;

  border-radius: 22px;

  overflow: hidden;

  transition: .3s;

}

.client-logo-card::before {

  content: "";

  position: absolute;

  inset: 0;

  padding: 1px;

  border-radius: 22px;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

}


.client-logo-card img {

  max-width: 75%;

  max-height: 42px;

  width: auto;

  height: auto;

  object-fit: contain;

}

.client-logo-card:hover {

  transform: translateY(-4px);

}
.advanced-core-image {

  max-width: 420px;

  width: 100%;

  height: auto;

  display: block;

  margin: 0 auto;

}

.advanced-feature-grid {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 16px;

}

.advanced-feature-column {

  display: flex;

  flex-direction: column;

  gap: 16px;

}

.advanced-feature-top {

  min-height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;


}

.advanced-feature-bottom {

  position: relative;

  padding: 20px 20px;

  text-align: center;

  background: rgba(9,16,29,.95);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid transparent;

  background:
    linear-gradient(
      rgba(9,16,29,.95),
      rgba(9,16,29,.95)
    ) padding-box,

    linear-gradient(
      90deg,
      #376DF9 0%,
      #DD3660 100%
    ) border-box;



  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}

.advanced-feature-bottom::before {

  content: "✓";

  display: flex;

  align-items: center;

  justify-content: center;

  width: 22px;

  height: 22px;

  border-radius: 8px;

  margin: 0 auto 12px;

  background: linear-gradient(
    90deg,
    #376DF9,
    #DD3660
  );

  color: #fff;

  font-size: 12px;

  font-weight: 700;

}

@media (max-width: 1199px) {

  .advanced-feature-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (max-width: 768px) {

  .advanced-feature-grid {

    grid-template-columns: 1fr;

  }

}

.contacts-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 12
}

.scroll-indicator {

  position: absolute;

  left: 50%;

  bottom: 40px;

  transform: translateX(-50%);

  width: 32px;

  height: 52px;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 20px;

  z-index: 10;

}

.scroll-indicator span {

  position: absolute;

  left: 50%;

  top: 10px;

  width: 4px;

  height: 10px;

  border-radius: 999px;

  background: linear-gradient(

    180deg,

    #376DF9,

    #DD3660

  );

  transform: translateX(-50%);

  animation: scrollWheel 1.8s infinite;

}

@keyframes scrollWheel {

  0% {

    opacity: 0;

    transform: translateX(-50%) translateY(0);

  }

  30% {

    opacity: 1;

  }

  100% {

    opacity: 0;

    transform: translateX(-50%) translateY(16px);

  }

}

@media (max-width: 768px) {

  .contacts-section {

    padding-bottom: 90px;

  }

  .scroll-indicator {

    bottom: 25px;

    transform: translateX(-50%) scale(.9);

  }

}

.contact-card {

  height: 100%;

  background: rgba(255,255,255,.04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,.05);

  display: flex;

  flex-direction: column;
}

.contact-card-body {

  padding: 30px;

  flex: 1;
}

.contact-card-footer {

  padding: 30px;

  border-top: 1px solid rgba(255,255,255,.08);
}

.contact-icon {

  margin-bottom: 30px;

  line-height: 0;
}

.contact-icon img {

  width: 64px;
  height: 64px;

  display: block;

  object-fit: contain;
}

.contact-icon svg {

  width: 30px;
  height: 30px;

  display: block;
}

@media (max-width: 991px) {

  .contact-card-body,
  .contact-card-footer {

    padding: 25px;
  }

  .contact-icon {

    margin-bottom: 20px;

  }

  .contact-icon img {

    width: 56px;

    height: 56px;

  }

}

.team-directory {

  background: #F6F6F6;
}

.department-title {

  margin-bottom: 40px;

  font-size: 56px;

  font-weight: 700;
}

.team-card {

  background: #fff;

  height: 100%;

  display: flex;

  flex-direction: column;
}

.team-photo {

  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  padding: 24px;
}

.team-info {

  padding: 0 24px 20px;
}


.team-info span {

  display: block;

  font-size: 14px;

  color: rgba(0,0,0,.7);
}

.team-divider {

  height: 1px;

  background: linear-gradient(
    90deg,
    #376DF9 0%,
    #DD3660 100%
  );
}

.team-contact {

  padding: 20px 24px;

  margin-top: auto;

  position: relative;

}

.team-linkedin {

  position: absolute;

  right: 24px;

  top: 20px;

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

}

.team-linkedin img {

  width: 34px;

  height: 34px;

  display: block;

  object-fit: contain;

}

.team-contact p {

  margin: 0;

  font-size: 14px;

  line-height: 1.8;
}

.team-linkedin {

  position: absolute;

  right: 24px;

  top: 20px;

  width: 34px;

  height: 34px;
}

.team-linkedin img {

  width: 100%;

  height: 100%;
}

@media (max-width: 991px) {

  .department-title {

    font-size: 38px;

    margin-bottom: 25px;
  }

  .team-photo {

    padding: 15px;
  }

}

.story-card {

  display: flex;

  align-items: stretch;

  justify-content: center;

  margin: 40px auto 0;

}

.story-card-image {
  flex: 0 0 35%;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-card-content {

  flex: 0 0 35%;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, .08);

}

.story-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
}

.story-card-content p {
  margin: 0;
}

@media (max-width: 991px) {

  .story-card {
    flex-direction: column;
  }

  .story-card-content {
    padding: 35px;
  }

}

.mission-box{
    text-align:center;
        background: #fff;
    padding: 20px;
    position: relative;
    transition: .3s;
    border: 1px solid rgba(0, 0, 0, 0);
    margin-bottom: 100px;
}

.mission-box p{
    max-width:900px;
    margin:0 auto 30px;
}

.mission-signatures{
    display:flex;
    justify-content:center;
    gap:100px;
    margin-top:60px;
}

.signature img{
    height:50px;
    width:auto;
    display:block;
    margin:0 auto 10px;
}

.signature strong{
    display:block;
}

.signature span{
    display:block;
}

.section{
    position:relative;
    overflow:hidden;
}

.mission-bg-text{
    position:absolute;
    left:50%;
    bottom:-50px;
    transform:translateX(-50%);
    width:120%;
    pointer-events:none;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    #376DF9,
    #DD3660
  );
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 80px;
}

.timeline-item.left {
  padding-right: 60px;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: 100%;
  transform: translateX(-50%);

  background: #376DF9;
  border: 3px solid #376DF9;
}

.timeline-item.right .timeline-dot {
  left: 0;
}

.timeline-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px;
}

.timeline-card img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.timeline-card h4 {
  margin-bottom: 10px;
  color: var(--accent-color);
}