:root {
  --default-font: "Tektur", "Open 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: "Tektur", "Montserrat", sans-serif;
  --nav-font: "Tektur", "Lato", sans-serif;
}

  /* Global Colors */
  :root {
    --background-color: #0C0C0C;
    --background-color-rgb: 12, 12, 12;
    --background-white-color: #f4f4f4;
    --background-color-rgb: 244, 244, 244;
    --default-color: #ADADAD;
    --default-color-rgb: 173, 173, 173;
    --accent-color: #764aff;
    --accent-color-rgb: 118, 74, 255;
    --heading-color: #ecebed;
    --heading-color-rgb: 236, 235, 237;
    --contrast-color: #64ffa0;
    --contrast-color-rgb: 100, 255, 160;
    --dark-color: #282828;
    --dark-color-rgb: 40, 40, 40;
    --white-color: #fff;
    --white-color-rgb: 236, 235, 237;
    --info-color: #9da8ea;
    --info-color-rgb: 157, 168, 234;
  }

/* Nav Menu Colors */
:root {
  --nav-color: var(--heading-color);
  --nav-hover-color: var(--accent-color);
  --nav-dropdown-color: var(--default-color);
  --nav-dropdown-hover-color: var(--accent-color);
  --nav-dropdown-background-color: rgba(0, 0, 0, 0.7);
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  cursor: crosshair;
}

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

a:hover {
  color: var(--contrast-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.text-center {
  text-align: center !important
}

mark:nth-of-type(1) {
  background-color: var(--info-color);
}

mark:nth-of-type(2) {
  background-color: var(--default-color);
}

mark {
  background-color: var(--contrast-color);
  padding: 0.05em 0.1em;
}

mark:nth-of-type(1) {
  background-color: var(--info-color);
}

mark:nth-of-type(2) {
  background-color: var(--default-color);
}

mark {
  background-color: var(--contrast-color);
  padding: 0.05em 0.1em;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 30px;
  margin-right: 6px;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

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

  .header .navmenu {
    order: 3;
  }

  .header {
    padding: 10px
  }

  .header .navmenu {
    padding-top: 3px;
  }

  .header .mobile-nav-toggle {
    padding-top: 3px;
    margin-right: 0px;
  }

  .header .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.burger-menu {
  height: 30px;
  width: 30px;
  cursor: pointer;
  zoom: 60%;
  margin: 0 20px;
}

.burger-menu span,
.burger-menu span::before,
.burger-menu span::after {
  background: rgb(255, 255, 255);
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  margin-top: 13px;

  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotateY(180deg);

  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.burger-menu span::before {
  margin-top: -12px;
}

.burger-menu span::after {
  margin-top: 12px;
}

.burger-menu.active span {
  background: transparent;
}

.burger-menu.active span::before {
  margin-top: 0;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-menu.active span::after {
  margin-top: 0;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger-menu.active {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);

  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: transparent;
  --heading-color: var(--heading-color);
  --nav-color: var(--heading-color);
  --nav-hover-color: #ecebed;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header:before {
  background-color: rgba(0, 0, 0, 0.7);
  content:"";
  position:absolute;
  z-index:-1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  top:0;
  left:0;
  right:0;
  bottom:0;
}

body:has(.mobile-nav-active .navmenu) .index-page.scrolled .header {
  backdrop-filter: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.dropdown.has-dropdown a:hover {
  text-decoration: none;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.nav-wrapper:hover::after {
  width: 100%;
}

.nav-icon {
  width: 15px;
  margin-top: 1px;
  margin-right: 20px;
  color: var(--info-color);
  justify-content: center;
  display:flex;
}

.nav-icon svg{
  max-height: 15px;
  margin:auto;
}

.nav-wrapper p {
  margin: 0;
}

.burger-menu {
  display: none;
}


/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu .nav-item {
    padding: 0 0 5px 0;
  }

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

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0px;
    padding-right: 10px;
    background: var(--nav-dropdown-background-color);
    -webkit-backdrop-filter: blur(5px) ; 
    backdrop-filter: blur(5px);
    display: none;
    position: absolute;
    visibility: visible;
    left: 0px !important;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0px;
    z-index: 99;
  }

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

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

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

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

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 10px rgba(var(--default-color-rgb), 0.15);
  }
}

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

  .burger-menu {
    display: block;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .nav-backdrop {
    transform: translate(9999px);
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-dropdown-background-color);
    -webkit-backdrop-filter: blur(10px) !important; 
    backdrop-filter: blur(10px) !important; ;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0%;
    transition: 0.3s;
  }

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

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

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

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: transparent !important;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0 20px;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    overflow: hidden;
    inset: 0;
    transition: 0.3s;
  }

  .mobile-nav-active .nav-backdrop {
    transition: opacity 0.3s linear;
    transform: translate(0);
    opacity: 1;
    height: 90vh;
    position: fixed;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--dark-color);
  background-color: var(--background-white-color);
  font-size: 12px;
  padding: 30px 0;
}

.footer p {
  margin: 0;
}

.footer i {
  color: var(--accent-color);
  margin-right: 7px;
}

.footer a {
  color: var(--dark-color)
}

.footer .social-links a {
  font-size: 22px;
  margin-left: 10px;
}

.footer i:hover,
.footer .link:hover,
.footer a:hover {
  color: var(--info-color)
}

.footer hr,
.footer .copyrights {
  color: var(--accent-color); 
}

.footer h6 {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# 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: 0px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: #ffffff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  z-index: -1;
}

.preloader {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border: 4px solid var(--accent-color);
  animation: loader 2s infinite ease;
}

.preloader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: var(--accent-color);
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

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

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}


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

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

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

.section-title h4 {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  color: var(--accent-color);
}

.section-title h4:before,
.section-title h4:after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h4:before {
  margin: 0 15px 5px 0;
}

.section-title h4:after {
  margin: 0 0 5px 15px;
}

@media (max-width: 360px) {

  .section-title h2:before,
  .section-title h2:after {
    width: 40px;
  }
  .recent-posts .section-title h2:before,
  .recent-posts .section-title h2:after {
    width: 15px !important;
  }
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav .container {
  justify-content: center;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.page-title nav li:not(.current) a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}

.page-title nav li a:hover {
  color: var(--contrast-color);
  text-decoration: none;
}

@media (max-width:500px) {
  #responsible-shortcut {
    display: none
  }
}

/* TODO: center align breacrumb menu */

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.read-more {
  background: var(--accent-color);
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 0px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  margin-left: auto;
}

.read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.read-more:hover {
  background: transparent;
  color: var(--accent-color);
  padding-right: 19px;
}

.read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  cursor: url("/static/img/cursor_otto.ico") 30 40, auto;
  padding: 0;
}

.hero h1 {
  text-align: left;
  position: relative;
  left: 5vh;
  top: 85vh;
  font-weight: 400;
  font-size: 10vh;
  color: var(--info-color);
  z-index: 2;
}

.hero .typing-text::after {
  content: "|";
  margin: 0;
  padding: 0;
  animation: typedjsBlink 0.7s infinite;
  -webkit-animation: typedjsBlink 0.7s infinite;
  animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
  50% {
    opacity: 0.0;
  }
}

.hero #break-mobile {
  display: none
}

#particles-js {
  height: 90vh;
  z-index: 1;
}


@media (max-width:830px){
  .hero #particles-js{
    height: 100vh;
  }
  .hero h1{
  font-size: 4vh;
  left: 20px;
  top: 80vh;
  }
}

/* Clients Section - Home Page
------------------------------*/
.clients {
  padding: 10px 0;
}

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

.clients .client-logo img {
  padding: 40px;
  max-width: 80%;
  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;
  }
}

/* About Section - Home Page
------------------------------*/
.about {
  --background-color: var(--background-white-color);
  padding-top: 100px;
  padding-bottom: 60px;
  color: rgba(var(--dark-color-rgb),0.7);
}

.about .content {
  padding-top: auto;
  padding-bottom: auto;
}

.about .content h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px;
  background: rgba(var(--accent-color-rgb), 0);
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
  display: inline-block;
}

.about .content h3 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: 500;
}

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

.about .icon-box {
  padding: 25px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  transition: all 0.3s ease-out 0s;
  background-color: var(--white-color);
}

.about .icon-box svg {
  width: 80px;
  height: 80px;
  border-radius: 0%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
  padding: 22px;
}

.about .icon-box h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover svg {
  background-color: var(--contrast-color);
  color: var(--dark-color);
}

.about .icon-box:hover {
  background-color: rgba(var(--accent-color-rgb), 0.02);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {
  .about {
    padding-bottom: 40px;
  }

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.stats img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.6);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--default-color-rgb), 0.6);
}

.stats .stats-item .percentage::before {
  content: '+';
}

.stats .stats-item .percentage::after {
  content: '%';
}

/* Services Section - Home Page
------------------------------*/
.services {
  padding: 50px 0px 20px 0px;
  background-color: var(--background-color);
}

.services .challenges .section-title,
.services .solutions .section-title {
  text-align: center;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 0px;
}

.services .section-title h3 {
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 10px;
  color: var(--accent-color);
}

.services .section-title h3:before,
.section-title h3:after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.services .solutions .section-title h3 {
  color: var(--contrast-color);
}

.services .solutions .section-title h3:before,
.services .solutions .section-title h3:after {
  background: var(--contrast-color);
}

.services .section-title h3:before {
  margin: 0 15px 5px 0;
}

.services .section-title h3:after {
  margin: 0 0 5px 15px;
}

.services .service-item {
  display: flex;
  position: relative;
  padding: 0px;
  border: 1px solid var(--dark-color);
  margin: 20px 0px;
  height: 130px;
}

.services .service-item ::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.services .solutions .service-item ::after {
  left: 128px;
  background-color: var(--contrast-color);
}

.services .service-item .icon {
  display: flex;
  margin: 0px;
  margin-left: auto;
  padding: 45px;
  height: 100%;
  width: 130px;
  color: var(--default-color);
  justify-content: center;
}

.services .challenges .service-item .icon {
  border-left: 1px solid var(--dark-color);
}

.services .solutions .service-item .icon {
  border-right: 1px solid var(--dark-color);
}

.services .solutions .icon {
  margin-left: 0;
}


.services .service-item .svg-icon {
  display: block;
  margin: 0 auto;
}

.services .service-item .text-box {
  margin: 15px 18px;
}

.services .service-item .text-box .title {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--heading-color);
}

.services .service-item .text-box .description {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  line-height: 24px;
  font-size: 14px;
  color: var(--default-color);
}

.services .service-item .text-box a {
  color: var(--heading-color)
}

.services .service-item .text-box .description a {
  color: var(--default-color)
}

.services .challenges .service-item .text-box a:hover {
  color: var(--accent-color);
}

.services .solutions .service-item .text-box a:hover {
  color: var(--contrast-color);
}

.services .service-item .text-box .description li {
  padding-left: 1em;
  text-indent: -1em;
}

.services .service-item .text-box .description li:before {
  content: ">";
  padding-right: 15px;
  color: var(--accent-color)
}

.services .challenges .service-item:hover,
.services .challenges .service-item:hover>div {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: var(--dark-color);
}

.services .solutions .service-item:hover,
.services .solutions .service-item:hover>div {
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  background-color: var(--dark-color);
}

.services .otto {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.services .otto.image {
  width: 100px;
  margin: auto;
}

.otto-stack {
  display: grid;
  padding: 20px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.services .otto-stack>* {
  grid-area: 1/1;
  stroke: var(--dark-color);
}

body:has(.services .service-item:hover) #otto-purple {
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

body:has(.services .service-item:hover) .otto.image {
  width: 110px;
  transition: all 0.5s ease 0.2s;
}

.services .connect {
  stroke-dasharray: 120px;
  stroke-dashoffset: 120px;
  transition-delay: 0s;
  stroke-width: 1px;
}

body:has(.services #problem1:hover) .services #connect-problem1 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0s;
}

body:has(.services #problem1:hover) .services #connect-solution1,
body:has(.services #problem1:hover) .services #connect-solution2 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0.5s;
}

body:has(.services #problem1:hover) .services #solution1,
body:has(.services #problem1:hover) .services #solution1>div,
body:has(.services #problem1:hover) .services #solution2,
body:has(.services #problem1:hover) .services #solution2>div {
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  transition-delay: 0.9s;
}

body:has(.services #problem2:hover) .services #connect-problem2 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0s;
}

body:has(.services #problem2:hover) .services #connect-solution2,
body:has(.services #problem2:hover) .services #connect-solution3 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0.2s;
}

body:has(.services #problem2:hover) .services #solution2,
body:has(.services #problem2:hover) .services #solution2>div,
body:has(.services #problem2:hover) .services #solution3,
body:has(.services #problem2:hover) .services #solution3>div {
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  transition-delay: 0.6s;
}

body:has(.services #problem3:hover) .services #connect-problem3 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0s;
}

body:has(.services #problem3:hover) .services #connect-solution1,
body:has(.services #problem3:hover) #connect-solution3 {
  stroke-dasharray: 120px;
  stroke-dashoffset: 0px;
  transition: all 0.5s ease-out 0.4s;
}

body:has(.services #problem3:hover) .services #solution1,
body:has(.services #problem3:hover) .services #solution1>div,
body:has(.services #problem3:hover) .services #solution3,
body:has(.services #problem3:hover) .services #solution3>div {
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  transition-delay: 0.9s;
}

.services .read-more {
  margin-left: auto;
  margin-right: 0;
}

.services .challenges .read-more {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: #FFF
}

.services .challenges .read-more:hover {
  background-color: transparent;
  color: var(--accent-color)
}

.services .solutions .read-more {
  background-color: var(--contrast-color);
  border: 1px solid var(--contrast-color);
  color: var(--dark-color)
}

.services .solutions .read-more:hover {
  background-color: transparent;
  color: var(--contrast-color)
}

@media (max-width:900px) {
  .services .service-item {
    height: 120px;
  }

  .services .read-more {
    margin-bottom: 20px;
  }

  .services {
    margin-bottom: 20px;
  }

  .services .service-item .text-box .description {
    font-size: 11px;
    line-height: 1.9em;
  }

  .services .solutions .service-item .text-box .description {
    font-size: 12px !important;
    line-height: 1.3em; 
  }
}

@media (max-width:355px) {
  .services .service-item .text-box .title {
    font-size: 12px !important;
    font-weight: 500
  }
}

@media (max-width:1400px) {
  .services .service-item .text-box .title {
    font-size: 14px;
    font-weight: 500
  }
  .services .service-item .text-box .description {
    font-size: 13px !important;
    line-height: 1.3rem;
  }


}

/* Pricing Section - Home Page
------------------------------*/
.pricing {
  padding: 55px 0 75px 0;
  background-color: var(--background-white-color);
  color: rgba(var(--dark-color-rgb),0.8);
}

.pricing h2,
.pricing h4 {
  color: var(--dark-color);
}

.pricing .section-title {
  margin-bottom: 0px;
  text-align: center;
}

.pricing .section-title span {
  color: var(--accent-color);
  font-weight: 500;
}

.pricing .pricing-item {
  box-shadow: 4px 4px 15px 2px rgba(var(--dark-color-rgb), 0.01);
  padding: 30px 30px;
  height: 500px;
  position: relative;
  border-radius: 0px;
  background-color: var(--white-color);
  text-align: left;
}

.pricing .pricing-item:hover {
  background-color: rgba(var(--info-color-rgb), 0.2);
  transition: 0.5;
}

.pricing .pricing-item:hover .icon {
  color: var(--heading-color);
}

.pricing .pricing-item h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: left;
}

.pricing .pricing-item .icon {
  padding: 20px;
  margin: 0;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
  color: var(--dark-color);
}

.pricing .pricing-item h3 {
  font-size: 40px;
  color: var(--accent-color);
  font-weight: 400;
  text-align: right;
  margin-bottom: 0;
}

.pricing .pricing-item h3 sup {
  font-size: 28px;
}

.pricing .pricing-item p {
  margin-top: -0.5em;
  text-align: right;
}

.pricing .pricing-item ul {
  list-style: none;
  margin: auto 0;
  padding-left: 1.3rem;
}

.pricing .pricing-item ul li {
  padding-left: 0em;
  padding-bottom: 0.5em;
  text-indent: -1.2em;
}

.pricing .pricing-item ul li span {
  color: var(--accent-color)
}

.pricing .pricing-item ul li:before {
  content: ">";
  padding-right: 10px;
  color: var(--accent-color)
}

.pricing .pricing-item .buy-btn {
  color: var(--accent-color);
  padding: 10px 40px;
  border: 1px solid var(--accent-color);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  margin: auto 0 0 auto;
  justify-content: flex-end;
  display: flex;
}

.pricing .pricing-item .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--heading-color)
}

.pricing .pricing-item.featured {
  background-color: rgba(var(--accent-color-rgb),0.95);
  color: black;
}
.pricing .pricing-item.featured:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8) !important;
}

.pricing .pricing-item.featured:hover .icon {
  color: var(--contrast-color);
  background-color: rgba(var(--dark-color-rgb), 0.8);
}

.pricing .pricing-item.featured .icon {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.pricing .pricing-item.featured h3 {
  color: var(--white-color);
}

.pricing .pricing-item.featured h4 {
  color: #000;
}

.pricing .pricing-item.featured li span {
  color: var(--white-color);
}

.pricing .pricing-item.featured li:before {
  color:  var(--white-color);
}

.pricing .pricing-item.featured .buy-btn {
  background-color: var(--dark-color);
  color: var(--heading-color);
  border: none;
}

.pricing .pricing-item.featured .buy-btn:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--dark-color-rgb), 0.8);
}

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  padding: 80px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px;
  border: 1px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--contrast-color);
  color: var(--dark-color);
  border: 1px solid var(--contrast-color);
  box-shadow: 0 0 20px 10px var(--dark-color);
}

/* Recent-posts Section - Home Page
------------------------------*/
.recent-posts .container {
  margin-top: 20px;
}

.recent-posts article {
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
}

.recent-posts .post-img {
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 18px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 0%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 0;
}

.recent-posts .overlay-content {
  justify-content: space-between;
}

.blog-post-card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .blog-post-card:hover {
    transform: scale(1.05);
  }
  
  
  .blog-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .blog-post-card:hover img {
    filter: grayscale(0%);
  }
  
  .blog-post-card .overlay-content .read-more {
    display: none;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .blog-post-card:hover .overlay-content .read-more {
    display: block;
  }
  
  .blog-post-card .overlay-content .read-more i {
    margin-left: 5px;
  }
  
  .blog-post-card .overlay-content .read-more:hover {
    opacity: 1;
  }
  
  .blog-post-card .title {
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 0;
    opacity: 1;
    transition: margin-bottom 0.3s ease;
  }
  
  .blog-post-card .title h2 {
    margin: 0;
    color: #fff;
  }
  
  .blog-post-card .overlay-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
  }
  
  .blog-post-card:hover .overlay-content {
    opacity: 1;
    bottom: 0;
  }

/* Contact Section - Home Page
------------------------------*/
.contact .section-title {
  margin-top: 3vh;
}

.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 34px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

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

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .form-control {
  background: rgba(var(--dark-color-rgb), 1);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: rgba(var(--default-color-rgb), 0);
}

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

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

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

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

.contact .php-email-form textarea {
  height: 20vh;
}

.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]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.7);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.7);
}

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

.contact .php-email-form button[type=submit]:hover {
  background: var(--contrast-color);
  color: var(--dark-color)
}

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

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

/*--------------------------------------------------------------
# Services Details Page
--------------------------------------------------------------*/
/* Service-details Section - Services Details Page
------------------------------*/
.service-details .service-box {
  padding: 20px;
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: rgba(var(--default-color-rgb), 0.8);
  background-color: rgba(var(--default-color-rgb), 0.04);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  /* background-color: var(--accent-color); */
  /* color: var(--contrast-color); */
  /* margin-top: 30px; */
  padding: 30px 15px;
}

.stats-divider {
  border: 0;
  border-top: 2px solid var(--contrast-color);
  margin: 10px auto;
  width: 100%;
  opacity: 1;
}

.stats-item {
  font-size: 20pt;
}

#kpi-list {
  color: white;
}

#kpi-list h5 {
  color: var(--accent-color);
}

#kpi-list .card {
  border-radius: 0px;
}

.kpi-card {
  margin-top: 1em;
  margin-bottom: 1em;
}

.kpi-card .col-lg-3 {
  display: flex;
  align-items: center;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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);
}

/* particles header */
.heading .particles-header {
  height: 15vh;
  position: relative;
}

.heading #particles-js,
.heading #header-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.heading #header-text {
  z-index: 99;
}

.heading .container p {
  font-size: 18px;
  color: var(--default-color-rgb) ;
}

#industries-header #particles-js {
  background-color: rgba(var(--accent-color-rgb),0.3);
}
#capabilities-header #particles-js {
  background-color: rgba(var(--contrast-color-rgb),0.3);
}
#blog-header #particles-js {
  background-color: rgba(var(--info-color-rgb),0.3);
}

@media (max-width:387px) {
  #capabilities-header .heading .particles-header {
    height: 17vh;
  }
}