@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Libre Franklin",  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: "Source Sans Pro",  sans-serif;
  --nav-font: "Poppins",  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: #f3f6f4; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #004c90; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #007aff; /* 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: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #bcbcbc; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #bcbcbc;  /* The default color of the main navmenu links */
  --nav-hover-color: #e77339; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #d9ead3; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #d9ead3; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5b5b5b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e77339; /* 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 {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0055a1;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@font-face {
  font-family: "Expan1";
  font-weight: bold;
  font-style: normal;
  src: url("https://mbrz.maibriz.com/fonz/expansiva/expansiva-bold.otf");
}

@font-face {
  font-family: "TypoldRegular";
  font-style: normal;
  font-weight: normal;
  src: local("TypoldRegular"), url("https://bsm.maibriz.com/fonts/typold-webfont/TypoldRegular.woff") format("woff");
}

@font-face {
  font-family: "TypoldThin";
  font-style: normal;
  font-weight: normal;
  src: local("TypoldThin"), url("https://bsm.maibriz.com/fonts/typold-webfont/TypoldThin.woff") format("woff");
}

@font-face {
  font-family: "TypoldExtraThin";
  font-style: normal;
  font-weight: normal;
  src: local("TypoldExtraThin"), url("https://bsm.maibriz.com/fonts/typold-webfont/TypoldExtraThin.woff") format("woff");
}

body {
  --my-bg-01: color-mix(in srgb, #d4ac0d, transparent 45%);
  --my-bg-03: color-mix(in srgb, var(--accent-color), transparent 45%);
  --my-bg-02: color-mix(in srgb, #ff9966, transparent 45%);
  --my-bg-green-2: rgba(217, 234, 211, 1);
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

/* -------------------------------------------------------- */
.scrolled-down {
  transition: opacity 1s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.scrolled-up {
  opacity: 1;
  height: auto;
}

/* -------------------------------------------------------- */
/* 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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #5b5b5b;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.scrolled .header {
  display: flex !important;
  transition: all 0.5s;
}

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

@media (min-width: 1100px) {
  #men-div-1 {
    order: 0;
  }

  #men-div-2 {
    order: 1;
    width: 100%;
    text-align: right;
    justify-content: flex-end;
  }

  #men-div-3 {
    order: 2;
  }
}

@media (max-width: 1099px) {
  #men-div-1 {
    order: 0;
  }

  #men-div-2 {
    order: 2;
    width: auto;
  }

  #men-div-3 {
    order: 1;
    width: 100%;
    text-align: right;
    justify-content: flex-end;
  }
}

@media (max-width: 650px) {
  .header .btn-get-support-1 {
    display: none !important;
  }
}

.logo1div {
  overflow: hidden;
  transition-duration: 0.8s;
  transition-property: transform;
}

.logo1div:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

#maibriz-logo1 {
  max-height: 64px !important;
  height: 3em;
}

#maibriz-logo2 {
  height: 1.8em;
}

.scrolled #maibriz-logo2 {
  height: 1.6em;
}

#maibriz-logo2:hover {
  max-height: 200px !important;
  height: 3em;
  width: auto;
  transition: 0.333s;
}

#logo2div {
  visibility: hidden;
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 9999 !important;
  opacity: 0.65;
  overflow: hidden;
  transition-duration: 0.8s;
  transition-property: transform;
}

#logo2div:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

#logo3div {
  visibility: visible;
  position: fixed;
  left: 4px;
  top: 4px;
  z-index: 9999 !important;
  opacity: 0.65;
  overflow: hidden;
  transition-duration: 0.8s;
  transition-property: transform;
}

#logo3div:hover {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

#logo3div:hover #header {
  display: flex;
}

.header .btn-get-support-1,
.header .btn-getstartedx {
  white-space: nowrap;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 28px 6px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 12ch;
  margin-right: 28px;
}

.header .btn-get-support-1:hover,
.header .btn-getstartedx:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%);
}

.header .btn-get-support-2-xx {
  color: var(--contrast-color);
  background: #5499c7;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 28px 4px 28px;
  border-radius: 5px;
  transition: 0.5s;
}

.header .btn-get-support-2-xx:hover {
  color: #34495e;
  background: color-mix(in srgb, #c0392b, transparent 15%);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-color: #bcbcbc;
  --nav-hover-color: #e77339;
}

/* It Page Header on Scroll
------------------------------*/
.it-page.scrolled .header {
  --background-color: #fff2dd;
  --nav-color: #999999;
  --nav-hover-color: #5b5b5b;
}

/* Focus Page Header
------------------------------*/
.focus-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #bcbcbc;
  --nav-hover-color: #e77339;
}

/* Focus Page Header on Scroll
------------------------------*/
.focus-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
  --nav-color: #bcbcbc;
  --nav-hover-color: #e77339;
}

/* Focus Maibriz 2 Page Header
------------------------------*/
.focus-maibriz-2-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
  --nav-hover-color: #e77339;
}

/* Focus Maibriz 2 Page Header on Scroll
------------------------------*/
.focus-maibriz-2-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
  --nav-hover-color: #e77339;
}

/* About Detail Maibriz Page Header
------------------------------*/
.about-detail-maibriz-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
  --nav-hover-color: #e77339;
}

/* About Detail Maibriz Page Header on Scroll
------------------------------*/
.about-detail-maibriz-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
  --nav-hover-color: #e77339;
}

/* Industries Page Header
------------------------------*/
.industries-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #bcbcbc;
  --nav-hover-color: #e77339;
}

/* Industries Page Header on Scroll
------------------------------*/
.industries-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
  --nav-hover-color: #e77339;
}

/* Calltoaction 01 Page Header
------------------------------*/
.calltoaction-01-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Calltoaction 01 Page Header on Scroll
------------------------------*/
.calltoaction-01-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Calltoaction 02 Page Header
------------------------------*/
.calltoaction-02-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Calltoaction 02 Page Header on Scroll
------------------------------*/
.calltoaction-02-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Calltoaction S1 Page Header
------------------------------*/
.calltoaction-s1-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Calltoaction S1 Page Header on Scroll
------------------------------*/
.calltoaction-s1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Calltoaction S2 Page Header
------------------------------*/
.calltoaction-s2-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Calltoaction S2 Page Header on Scroll
------------------------------*/
.calltoaction-s2-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Calltoaction S4 Page Header
------------------------------*/
.calltoaction-s4-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Calltoaction S4 Page Header on Scroll
------------------------------*/
.calltoaction-s4-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Imp Page Header
------------------------------*/
.imp-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Imp Page Header on Scroll
------------------------------*/
.imp-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Privacy Policy Page Header
------------------------------*/
.privacy-policy-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Privacy Policy Page Header on Scroll
------------------------------*/
.privacy-policy-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Terms Of Use Page Header
------------------------------*/
.terms-of-use-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Terms Of Use Page Header on Scroll
------------------------------*/
.terms-of-use-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Contact Page Header
------------------------------*/
.contact-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Contact Page Header on Scroll
------------------------------*/
.contact-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Getsupport Page Header
------------------------------*/
.getsupport-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Getsupport Page Header on Scroll
------------------------------*/
.getsupport-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Getsupport Ticket Info 1 Page Header
------------------------------*/
.getsupport-ticket-info-1-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Getsupport Ticket Info 1 Page Header on Scroll
------------------------------*/
.getsupport-ticket-info-1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Getticket Page Header
------------------------------*/
.getticket-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Getticket Page Header on Scroll
------------------------------*/
.getticket-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Getticket Res1 Page Header
------------------------------*/
.getticket-res1-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Getticket Res1 Page Header on Scroll
------------------------------*/
.getticket-res1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Getticket Form 1 Page Header
------------------------------*/
.getticket-form-1-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Getticket Form 1 Page Header on Scroll
------------------------------*/
.getticket-form-1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Subscribe 01 Page Header
------------------------------*/
.subscribe-01-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Subscribe 01 Page Header on Scroll
------------------------------*/
.subscribe-01-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Indexalt01 Page Header
------------------------------*/
.indexalt01-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Indexalt01 Page Header on Scroll
------------------------------*/
.indexalt01-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Zitate1 Page Header
------------------------------*/
.zitate1-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Zitate1 Page Header on Scroll
------------------------------*/
.zitate1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Services Page Header
------------------------------*/
.services-page .header {
  --background-color: #444444;
  --nav-hover-color: #e77339;
}

/* Services Page Header on Scroll
------------------------------*/
.services-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --nav-hover-color: #e77339;
}

/* Services 04 Page Header
------------------------------*/
.services-04-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Services 04 Page Header on Scroll
------------------------------*/
.services-04-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Software Page Header on Scroll
------------------------------*/
.software-page.scrolled .header {
  --background-color: #fff2dd;
  --nav-color: #999999;
  --nav-hover-color: #5b5b5b;
}

/* Hero It Backup1 Page Header
------------------------------*/
.hero-it-backup1-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero It Backup1 Page Header on Scroll
------------------------------*/
.hero-it-backup1-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero It2 Page Header
------------------------------*/
.hero-it2-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero It2 Page Header on Scroll
------------------------------*/
.hero-it2-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero It1 Page Header
------------------------------*/
.hero-it1-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero It1 Page Header on Scroll
------------------------------*/
.hero-it1-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero It3 Page Header
------------------------------*/
.hero-it3-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero It3 Page Header on Scroll
------------------------------*/
.hero-it3-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero Top Test Page Header
------------------------------*/
.hero-top-test-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero Top Test Page Header on Scroll
------------------------------*/
.hero-top-test-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero Footer Page Header
------------------------------*/
.hero-footer-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero Footer Page Header on Scroll
------------------------------*/
.hero-footer-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/* A1 Page Header
------------------------------*/
.a1-page .header {
  --background-color: #444444;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* A1 Page Header on Scroll
------------------------------*/
.a1-page.scrolled .header {
  --background-color: rgba(0, 76, 144, 0.9);
  --default-color: rgba(255, 255, 255, 0);
}

/* Hero Top Page Header
------------------------------*/
.hero-top-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Hero Top Page Header on Scroll
------------------------------*/
.hero-top-page.scrolled .header {
  --background-color: #444444;
  --default-color: rgba(255, 255, 255, 0);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.active {
  color: var(--nav-hover-color) !important;
}

@media (min-width: 1100px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

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

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

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

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

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

  .navmenu .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;
  }

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

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

  .navmenu .megamenu {
    position: static;
  }

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

  .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 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 1099px) {
  .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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #0055a1;
  --default-color: #ffffff;
  --heading-color: #bcbcbc;
  --accent-color: #004c90;
  --surface-color: rgba(255, 255, 255, 0);
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

.footer .social-links {
  padding-bottom: 20px;
}

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

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

.footer .social-links a:last-child {
  border: 2px solid orange;
}

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

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

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

.footer .footer-links ul a:hover {
  --mc1: #e77339;
  text-decoration: underline dotted var(--mc1);
  font-size: 1em;
  color: color-mix(in srgb, white, transparent 58%);
}

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

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

.footer .footer-contact a {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact a:hover {
  color: #e77339;
  text-decoration: underline dotted #e77339;
}

.footer .copyright {
  color: #d7dbdd;
  background-color: #004C90;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.footer .copyright ul>li {
  display: inline-block;
  color: #d7dbdd;
}

.footer .copyright ul>li a {
  color: #d7dbdd;
}

.footer .copyright ul>li a:hover {
  color: #bcbcbc;
}

.footer .copyright ul>li span {
  font-size: 1.3em;
  padding-left: 0.425em;
  padding-right: 0.225em;
}

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

.footer .tab1 {
  tab-size: 20;
  white-space: pre;
}

.footer .tab2 {
  display: inline-block;
  width: 9ch;
}

.footer .tab3 {
  display: inline-block;
  width: 5ch;
}

.footer .p2 {
  line-height: 1em;
  border-color: red;
  border-style: none;
  margin-bottom: 0;
  margin-top: 0;
}

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

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

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
@font-face {
  font-family: "Expan1";
  font-weight: bold;
  font-style: normal;
  src: url("https://mbrz.maibriz.com/fonz/expansiva/expansiva-bold.otf");
}

.mbrz-logo-mi-ct {
  font-family: "Expan1", sans-serif;
  font-size: 15pt;
  font-weight: 900;
  white-space: inherit;
  background: -webkit-gradient(linear, left top, left bottom, from(#f46414), color-stop(50%, #f46414), color-stop(80%, #9e9e9e), color-stop(90%, #6e6e6e));
  background: linear-gradient(180deg, #f46414 0, #f46414 50%, #9e9e9e 80%, #6e6e6e 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mbrz-logo-mi-ct-2 {
  color: #966919 !important;
  font-family: "Expan1", sans-serif;
  font-size: 15pt;
  font-weight: 900;
  white-space: inherit;
  background: -webkit-gradient(linear, left top, left bottom, from(#f46414), color-stop(50%, #f46414), color-stop(80%, #9e9e9e), color-stop(90%, #6e6e6e));
  background: linear-gradient(180deg, #f46414 0, #f46414 50%, #977339 80%, #977339 90%);
  background: linear-gradient(180deg, #966919 0, #966919 50%, #f46414 80%, #977339 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# It Hero Section
--------------------------------------------------------------*/
.it-hero {
  padding-top: 40px;
  /*60px;*/
  --why-bg-color: #0055a1;
  --my-background-color: #EEEEEE;
  --my-nav-background-color: #5b5b5b;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
  background-color: var(--my-background-color);
  /*
  #herobg{
  xfilter: blur(8.5px);
  }
  */
  /*
    .hero-anima-1 {
    background: linear-gradient(132deg, #000000, #00ff00, #0000ff, #e60073, #ff0000, #ffffff);
    background-size: 400% 400%;
    animation: BackgroundGradient 15s ease infinite;

    @keyframes BackgroundGradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    }
    */
}

@media screen and (max-width: 768px) {
  .it-hero {
    /*padding: 40px 0;*/
    padding-top: 20px;
  }
}

.it-hero .h4-dbg-xx {
  border-color: red;
  border-style: solid;
  border-width: 1px;
}

.it-hero .mbrztab1 {
  padding-left: 20px;
  font-weight: bold;
  color: #eeeeee;
  /* #e77339; */
  text-shadow: #fc0 4px 0 20px;
}

.it-hero .mbz-nowrap {
  white-space: nowrap;
}

.it-hero .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.it-hero .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.it-hero .hero-ooo1 {
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4, #ffffff);
  background-size: 400% 400%;
  animation: BackgroundGradient-x 15s ease infinite;
  opacity: 0.7;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero .hero-ooo {
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-x 20s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  /* background-color: burlywood; */
  /*
  */
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  /*url('https://mbrz.maibriz.com/img/maibriz-it-solutions-14i3.svg');*/
  /*
  background-color: rgba(231, 115, 57, 0.72);
  background-blend-mode: color-dodge;
  */
  /*
  */
  background-color: white;
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 60% 0;
  /* 50% 0 */
  background-size: cover;
  /*
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.it-hero .hero-border {
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-hero .hero-border-1 {
  border: none;
  box-shadow: 4px 4px 14px rgba(231, 115, 57, 0.4);
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.scrolled .it-hero .hero-border-1 {
  background-color: #fff2dd !important;
}

.scrolled .it-hero .hero-border-1 h2,
.scrolled .it-hero .hero-border-1 h3 {
  color: var(--my-nav-background-color) !important;
}

.it-hero .hero-border-2 {
  border: none;
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 40px !important;
  border-top-left-radius: 40px !important;
}

.it-hero .hero-border-33 {
  border-color: white !important;
  border-width: 8px !important;
  border-style: solid;
}

.it-hero .hero-hdr {
  xz-index: -1 !important;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  width: 100%;
  height: 200px;
  background-position: 60% 30%;
}

.it-hero .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.it-hero .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.it-hero .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(6px) !important;
  transition: 0.2s !important;
}

.it-hero #hero-hand {
  filter: opacity(0.87);
  /* border-radius: 14px; */
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.it-hero #mbz-hero-div {
  /*
      transform: scale(0.5, 0.5);
      -ms-transform: scale(0.5, 0.5);
      -webkit-transform: scale(0.5, 0.5);
    */
  text-align: center;
  padding: 10px 30px;
}

.it-hero .btn-00 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
  background-color: #eeeeee !important;
}

.it-hero .btn-0 {
  /*
  border-color: silver !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.it-hero .btn-1 {
  /*
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-color: color-mix(in srgb, var(--accent-color), transparent 0%) !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.it-hero .btn-2 {
  border-color: color-mix(in srgb, #ff9966, transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #ff9966, transparent 45%) !important;
  /* background: color-mix(in srgb, #c0392b, transparent 15%) !important; */
}

.it-hero .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
}

.it-hero .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
}

.it-hero .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.it-hero .btn-green-2x {
  /*
  border-color: rgba(217, 234, 211, 1) !important;
  */
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero .btn-green-2x:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-hero .btn-green-2 {
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero .btn-green-2:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-hero .typed-cursor {
  opacity: 0.31;
}

.it-hero .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.it-hero #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
  background-color: #eeeeee !important;
}

.it-hero #mbz-typed-2>span {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;
  color: white;
  background-color: #004c90;
  */
}

.it-hero #mbz-typed-2 .typed {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;      
  color: white;
  background-color: #004c90;
  */
}

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

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

.it-hero .container {
  z-index: 3;
  /*
  padding:0 !important;
  margin: 0 !important;
  padding-right:0 !important;
  padding-left:0 !important;

  margin-right:auto;
  margin-left:auto; 
  max-width: 77%;
  */
}

@media screen and (width >=960px) {
  .it-hero .container {
    max-width: 80%;
  }
}

.it-hero .xxx-welcome-2-brdr {
  border: none;
  box-shadow: 0px 2px 15px rgba(231, 115, 57, 0.8);
  border-radius: 40px;
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  /* #5dad; */
}

.it-hero .welcome-2-bg {
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  background-size: cover;
  background-color: #eee;
  /* #5b5b5b */
  /* #5dad; */
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgba(238, 238, 170, 0.6666666667) 40%, #eee 80%);
  /*
  border-style: solid;
  border-width: 1px;
  border-bottom-style: none;
  */
}

.scrolled .it-hero .welcome-2-bg {
  background: none;
}

.it-hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.it-hero .welcome p {
  font-size: 24px;
  margin: 0;
}

.it-hero .welcome-2 {
  padding: 20px;
}

.it-hero .welcome-2 h2 {
  margin: 0;
  /*font-size: 48px;*/
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.it-hero .welcome-2 p {
  font-size: 24px;
  margin: 0;
}

@media screen and (max-width: 360px) {
  .it-hero .welcome-2 {
    padding: 15px;
  }

  .it-hero .welcome-2 h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 300px) {
  .it-hero .welcome-2 {
    padding: 10px;
  }

  .it-hero .welcome-2 h2 {
    font-size: 28px;
  }
}

.content {
  /* margin-top: 40px; */
  margin-top: 0px;
  /*20px;*/
}

.content .why-box {
  color: var(--contrast-color);
  background: var(--why-bg-color);
  /* var(--accent-color); */
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
  padding: 30px;
  border-radius: 4px;
}

.content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.content .why-box p {
  margin-bottom: 30px;
}

.content .why-box .more-btn-2 {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.content .why-box .more-btn-2 i {
  font-size: 14px;
}

.content .why-box .more-btn-2:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.content .why-box span {
  padding-left: 10px;
}

@media screen and (width < 1000px) {
  .content .why-box {
    border-bottom-right-radius: 10px !important;
  }
}

.content .why-box-3 {
  z-index: -1;
  text-align: center;
  background-color: #eeeeee !important;
  padding: 15px 25px;
  width: 100%;
  border: 0;
}

.content .why-box-3 p {
  margin-bottom: 0;
}

.content .why-box-3t {
  z-index: -1;
  text-align: center;
  /*
  background: #FFF;
  background: linear-gradient(45deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 219, 1) 100%);
  */
  background: D9D9DB;
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgb(255, 255, 255) 40%);
  padding: 15px 25px;
  width: 100%;
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0px;
  border-top-color: var(--why-bg-color) !important;
  border-bottom-color: var(--why-bg-color) !important;
  border-left-style: none;
  border-bottom-style: solid;
  /*
  .scrolled & {
  background: D9D9DB;
  background: linear-gradient(90deg,rgba(217, 217, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
  }    
  */
}

.content .why-box-3t p {
  margin-bottom: 0;
}

@media screen and (width < 1000px) {
  .content .why-box-3t {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right-width: 1px;
    border-right-color: #e77339 !important;
  }
}

.content .why-box-5 {
  z-index: -1;
  text-align: right !important;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  /*
  background-color:#eeeeee !important;
  */
  /*last: background-color: color-mix(in srgb, #555 , transparent 8%) !important; */
  background: var(--why-bg-color);
  /*
    margin-left: 10px; margin-right: 10px;
    */
  padding: 15px 25px;
  width: 100%;
  /*
  border-width: 1px;
  border-style: solid;
  */
  border: 0;
  /*
  border-color: white;
  border-width: 1px;
  border-style: solid;    
  */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /*
  border-bottom-color: var(--why-bg-color) !important;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-right-color:  var(--why-bg-color) !important;
  border-right-width: 2px;
  border-right-style: solid;
  */
  /*
      border-color: white !important;
      border-width: 1px !important;
      border-style: solid;
  */
  /*xxx
  border-left-color:  #e77339 !important;
  border-right-color:  #e77339 !important;
      border-left-width: 1px;
      border-right-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  */
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
  /*
  .scrolled & {
    strong { color: #0055a1 !important; }
    background-color: #fff2dd !important;
  }    
  */
}

.content .why-box-5 h3 {
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.content .why-box-5 h3 strong {
  color: #e77339;
}

.content .why-box-5 p {
  /* margin-bottom: 30px; */
  margin-bottom: 0;
}

.content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
  x-height: auto;
  height: 100%;
}

.content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.content .icon-box h4 a {
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: var(--why-bg-color) !important;
  text-decoration: none;
}

.content .icon-box h4 a:hover {
  text-decoration: underline;
}

.content .icon-box p {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media screen and (orientation: portrait) and (max-width: 768px),
screen and (orientation: landscape) and (max-width: 768px) {
  .content {
    /*padding: 40px 0;*/
    padding: 0;
  }

  .content .welcome-2-bg {
    background-image: none;
    box-shadow: none;
    border-radius: 0;
  }

  .content .mbrztab1 {
    padding-left: 0;
    x-font-weight: normal;
    font-size: 24px;
    color: #0055a1;
    x-text-shadow: #fc0 4px 0 20px;
    text-shadow: #e77339 2px 0 20px;
  }

  .content .hero-bbb {
    background-size: cover;
    background-image: none;
    background-blend-mode: none;
    /*
    url('https://bsm.maibriz.com/AdobeStock_460733281-mm1.png'), url('https://bsm.maibriz.com/AdobeStock_409021414.jpeg');
    */
  }

  .content .hero-ooo {
    background: none;
  }
}

@media screen and (max-width: 360px) {
  .content .mbrztab1 {
    padding-left: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .content .mbrztab1 {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Focus Section
--------------------------------------------------------------*/
.focus {
  --background-color: rgba(208, 224, 227, 0.53);
}

@media (max-width: 400px) {
  .focus .section-title {
    padding-top: 0;
  }
}

.focus .service-item-bg-1 {
  background-color: #eee !important;
  padding-bottom: 16px !important;
  padding-top: 20px !important;
}

.focus .service-item-bg-1:hover {
  background-color: var(--contrast-color) !important;
}

.focus .service-item-bg-1 p {
  font-size: medium !important;
}

.focus .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.focus .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.focus .service-item .icon i,
.focus .service-item .icon svg {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.focus .service-item .icon svg {
  width: 56px;
}

.focus .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.focus .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.focus .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  margin-bottom: 4px;
}

.focus .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.focus .service-item:hover .icon i {
  color: var(--heading-color);
}

.focus .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
}

.focus .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--heading-color);
}

.focus .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Focus Maibriz 1 Section
--------------------------------------------------------------*/
.focus-maibriz-1 {
  --background-color: #d0e0e3;
  --default-color: #555;
  --heading-color: #333;
}

.focus-maibriz-1 .section-title {
  padding-bottom: 2rem;
}

.focus-maibriz-1 a {
  color: var(--default-color);
  padding: 0px;
}

.focus-maibriz-1 .feature-box {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  height: 100%;
  padding: 40px 30px;
  padding-top: 24px;
  padding-bottom: 22px;
  border-radius: 10px;
}

.focus-maibriz-1 .feature-box:hover {
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.4);
}

.focus-maibriz-1 .feature-box ul {
  list-style: none;
  padding: 0;
  vertical-align: baseline;
}

.focus-maibriz-1 .feature-box ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.focus-maibriz-1 .feature-box ul li:last-child {
  padding-bottom: 0px;
}

.focus-maibriz-1 .feature-box ul i {
  margin-bottom: 0px;
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.focus-maibriz-1 .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.focus-maibriz-1 .feature-box i.mbz-smaller {
  font-size: 24px !important;
}

.focus-maibriz-1 .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.focus-maibriz-1 .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.focus-maibriz-1 .feature-box.orange {
  background-color: #fff3e2;
}

.focus-maibriz-1 .feature-box.orange i {
  color: #edb86e;
}

.focus-maibriz-1 .feature-box.blue {
  background-color: #deedfd;
}

.focus-maibriz-1 .feature-box.blue i {
  color: #20a5f8;
}

.focus-maibriz-1 .feature-box.green {
  background-color: #d5f1e4;
}

.focus-maibriz-1 .feature-box.green i {
  color: #48c88a;
}

.focus-maibriz-1 .feature-box.red {
  background-color: #fdeded;
}

.focus-maibriz-1 .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Focus Maibriz Section
--------------------------------------------------------------*/
.focus-maibriz {
  --background-color: #cfe2f3;
  --default-color: #555;
  --heading-color: #333;
}

.focus-maibriz .section-title {
  padding-bottom: 2rem;
}

.focus-maibriz a {
  color: var(--default-color);
  padding: 0px;
}

.focus-maibriz .feature-box {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  height: 100%;
  padding: 40px 30px;
  padding-top: 24px;
  padding-bottom: 22px;
  border-radius: 10px;
}

.focus-maibriz .feature-box:hover {
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.4);
}

.focus-maibriz .feature-box ul {
  list-style: none;
  padding: 0;
  vertical-align: baseline;
}

.focus-maibriz .feature-box ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.focus-maibriz .feature-box ul li:last-child {
  padding-bottom: 0px;
}

.focus-maibriz .feature-box ul i {
  margin-bottom: 0px;
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.focus-maibriz .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.focus-maibriz .feature-box i.mbz-smaller {
  font-size: 24px !important;
}

.focus-maibriz .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.focus-maibriz .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.focus-maibriz .feature-box.orange {
  background-color: #fff3e2;
}

.focus-maibriz .feature-box.orange i {
  color: #edb86e;
}

.focus-maibriz .feature-box.blue {
  background-color: #deedfd;
}

.focus-maibriz .feature-box.blue i {
  color: #20a5f8;
}

.focus-maibriz .feature-box.green {
  background-color: #d5f1e4;
}

.focus-maibriz .feature-box.green i {
  color: #48c88a;
}

.focus-maibriz .feature-box.red {
  background-color: #fdeded;
}

.focus-maibriz .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Focus Maibriz 2 Section
--------------------------------------------------------------*/
.focus-maibriz-2 {
  --background-color: #d9ead3;
  --default-color: #555;
  --heading-color: #333;
}

.focus-maibriz-2 a {
  color: var(--default-color);
  padding: 0px;
}

.focus-maibriz-2 .feature-box {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  height: 100%;
  padding: 40px 30px;
  padding-top: 24px;
  padding-bottom: 22px;
  border-radius: 10px;
}

.focus-maibriz-2 .feature-box:hover {
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.4);
}

.focus-maibriz-2 .feature-box ul {
  list-style: none;
  padding: 0;
  vertical-align: baseline;
}

.focus-maibriz-2 .feature-box ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.focus-maibriz-2 .feature-box ul li:last-child {
  padding-bottom: 0px;
}

.focus-maibriz-2 .feature-box ul i {
  margin-bottom: 0px;
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.focus-maibriz-2 .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.focus-maibriz-2 .feature-box i.mbz-smaller {
  font-size: 24px !important;
  vertical-align: sub;
}

.focus-maibriz-2 .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.focus-maibriz-2 .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.focus-maibriz-2 .feature-box.orange {
  background-color: #fff3e2;
}

.focus-maibriz-2 .feature-box.orange i {
  color: #edb86e;
}

.focus-maibriz-2 .feature-box.blue {
  background-color: #deedfd;
}

.focus-maibriz-2 .feature-box.blue i {
  color: #20a5f8;
}

.focus-maibriz-2 .feature-box.green {
  background-color: #d5f1e4;
}

.focus-maibriz-2 .feature-box.green i {
  color: #48c88a;
}

.focus-maibriz-2 .feature-box.red {
  background-color: #fdeded;
}

.focus-maibriz-2 .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .maibriz-agentur:hover,
.about .maibriz-agentur:hover a,
.about .maibriz-agentur:hover i {
  color: #e77339 !important;
}

.about .content-block {
  margin-right: 30px;
}

.about .content-block .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.about .content-block .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about .content-block .description {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about .content-block .button-wrapper {
  margin-top: 2rem;
}

.about .content-block .button-wrapper .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.about .content-block .button-wrapper .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: bisque;
  transform: translateY(-3px);
}

.about .content-block .button-wrapper .btn-agentur {
  background-color: #e77339;
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.about .content-block .button-wrapper .btn-agentur:hover {
  background-color: bisque;
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about .content-block {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.about .services-list .service-item {
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .services-list .service-item:first-child {
  padding-top: 0;
}

.about .services-list .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.about .services-list .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.about .services-list .service-item:hover .service-content h4 a {
  color: var(--accent-color);
}

.about .services-list .service-icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.about .services-list .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .services-list .service-content {
  position: relative;
  width: 100%;
}

.about .services-list .service-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.about .services-list .service-content h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.about .services-list .service-content h4 a:hover {
  color: var(--accent-color);
}

.about .services-list .service-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about .services-list .service-item {
    padding: 2rem 0;
  }

  .about .services-list .service-icon {
    height: 4rem;
    width: 4rem;
    margin-right: 1rem;
  }

  .about .services-list .service-icon i {
    font-size: 2rem;
  }

  .about .services-list .service-content h4 {
    font-size: 1.25rem;
  }

  .about .services-list .service-content p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# About Detail 1 Section
--------------------------------------------------------------*/
.about-detail-1 .mbz-tab-1 {
  padding-left: 6px;
}

.about-detail-1 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-detail-1 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-detail-1 .features-card:last-child {
  margin-bottom: 0;
}

.about-detail-1 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.about-detail-1 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-detail-1 .feature-image:hover img {
  transform: scale(1.05);
}

.about-detail-1 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-detail-1 .feature-image .overlay-icon i {
  font-size: 24px;
}

.about-detail-1 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.about-detail-1 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .about-detail-1 .feature-content .content-inner {
    padding: 2rem;
  }
}

.about-detail-1 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-detail-1 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .about-detail-1 h3 {
    font-size: 24px;
  }
}

.about-detail-1 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-detail-1 h4 {
    font-size: 22px;
  }
}

.about-detail-1 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.about-detail-1 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.about-detail-1 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-detail-1 .feature-list li:last-child {
  margin-bottom: 0;
}

.about-detail-1 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.about-detail-1 .feature-action {
  margin-top: 1.5rem;
}

.about-detail-1 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.about-detail-1 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.about-detail-1 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.about-detail-1 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .about-detail-1 .feature-image,
  .about-detail-1 .feature-content {
    height: auto;
  }

  .about-detail-1 .feature-content .content-inner {
    padding: 2rem;
  }

  .about-detail-1 h3 {
    font-size: 22px;
  }

  .about-detail-1 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Detail Maibriz Section
--------------------------------------------------------------*/
.about-detail-maibriz .mbz-tab-1 {
  padding-left: 6px;
}

.about-detail-maibriz .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-detail-maibriz .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-detail-maibriz .features-card:last-child {
  margin-bottom: 0;
}

.about-detail-maibriz .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.about-detail-maibriz .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-detail-maibriz .feature-image:hover img {
  transform: scale(1.05);
}

.about-detail-maibriz .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-detail-maibriz .feature-image .overlay-icon i {
  font-size: 24px;
}

.about-detail-maibriz .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.about-detail-maibriz .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .about-detail-maibriz .feature-content .content-inner {
    padding: 2rem;
  }
}

.about-detail-maibriz .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-detail-maibriz h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .about-detail-maibriz h3 {
    font-size: 24px;
  }
}

.about-detail-maibriz h4 {
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-detail-maibriz h4 {
    font-size: 22px;
  }
}

.about-detail-maibriz p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.about-detail-maibriz .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.about-detail-maibriz .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-detail-maibriz .feature-list li:last-child {
  margin-bottom: 0;
}

.about-detail-maibriz .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.about-detail-maibriz .feature-action {
  margin-top: 1.5rem;
}

.about-detail-maibriz .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.about-detail-maibriz .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.about-detail-maibriz .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.about-detail-maibriz .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .about-detail-maibriz .feature-image,
  .about-detail-maibriz .feature-content {
    height: auto;
  }

  .about-detail-maibriz .feature-content .content-inner {
    padding: 2rem;
  }

  .about-detail-maibriz h3 {
    font-size: 22px;
  }

  .about-detail-maibriz h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/
.industries {
  padding-top: 60px;
  padding-bottom: 60px;
}

.industries .content-block {
  margin-right: 30px;
}

.industries .content-block .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.industries .content-block .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.industries .content-block .description {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.industries .content-block .button-wrapper {
  margin-top: 2rem;
}

.industries .content-block .button-wrapper .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.industries .content-block .button-wrapper .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .industries .content-block {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.industries .services-list .service-item {
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.industries .services-list .service-item:first-child {
  padding-top: 0;
}

.industries .services-list .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.industries .services-list .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.industries .services-list .service-item:hover .service-content h4 a {
  color: var(--accent-color);
}

.industries .services-list .service-icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.industries .services-list .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.industries .services-list .service-content {
  position: relative;
  width: 100%;
}

.industries .services-list .service-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.industries .services-list .service-content h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.industries .services-list .service-content h4 a:hover {
  color: var(--accent-color);
}

.industries .services-list .service-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .industries .services-list .service-item {
    padding: 2rem 0;
  }

  .industries .services-list .service-icon {
    height: 4rem;
    width: 4rem;
    margin-right: 1rem;
  }

  .industries .services-list .service-icon i {
    font-size: 2rem;
  }

  .industries .services-list .service-content h4 {
    font-size: 1.25rem;
  }

  .industries .services-list .service-content p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Testimonials 01 Section
--------------------------------------------------------------*/
.testimonials-01 {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

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

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

.testimonials-01 p-xxx {
  line-height: 1.7;
  color: var(--default-color);
}

.testimonials-01 .testimonial {
  max-width: 800px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-01 .testimonial .name {
  font-size: 18px;
  color: var(--heading-color);
}

.testimonials-01 .testimonial .img-wrap img {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonials-01 .swiper-pagination {
  position: absolute;
  bottom: 0px;
}

.testimonials-01 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
  opacity: 0.3;
}

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

/*--------------------------------------------------------------
# Calltoaction 01 Section
--------------------------------------------------------------*/
.calltoaction-01 {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

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

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

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

.calltoaction-01 h3 {
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-01 p {
  color: var(--default-color);
}

.calltoaction-01 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--background-color), transparent 15%);
}

.calltoaction-01 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.calltoaction-01 strong {
  color: #e77339;
}

/*--------------------------------------------------------------
# Calltoaction Section
--------------------------------------------------------------*/
.calltoaction {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
  position: relative;
  overflow: hidden;
}

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

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

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

.calltoaction h3 {
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction p {
  color: var(--default-color);
}

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

.calltoaction .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.calltoaction strong {
  color: #e77339;
}

.calltoaction .content-header {
  margin-bottom: 5rem;
}

.calltoaction .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction .cta-section {
  margin-top: 4rem;
}

.calltoaction .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .calltoaction .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction .cta-section .cta-card .btn-primary,
.calltoaction .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction .cta-section .cta-card .btn-primary i,
.calltoaction .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.calltoaction .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0 60px 0;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 10%, var(--accent-color) 45%, transparent 45%, transparent 100%);
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 15px;
}

.hero .hero-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

.hero .hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 35px;
  max-width: 500px;
}

@media (max-width: 991px) {
  .hero .hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
  }
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 2px solid transparent;
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.hero .btn-video {
  color: var(--default-color);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .btn-video i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.hero .btn-video:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: scale(1.1);
}

.hero .hero-image {
  position: relative;
  text-align: center;
}

@media (max-width: 991px) {
  .hero .hero-image {
    margin-top: 50px;
  }
}

.hero .hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero .hero-image::before {
    width: 300px;
    height: 300px;
  }
}

.hero .floating {
  max-width: 85%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%));
}

@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
}

@keyframes floating {

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

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

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/*--------------------------------------------------------------
# Calltoaction Csc 1 Section
--------------------------------------------------------------*/
.calltoaction-csc-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
}

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

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

.calltoaction-csc-1 .container {
  position: relative;
  z-index: 3;
}

.calltoaction-csc-1 h3 {
  /* color: var(--default-color); */
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-csc-1 p {
  color: var(--default-color);
}

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

.calltoaction-csc-1 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.calltoaction-csc-1 strong {
  color: #e77339;
}

.calltoaction-csc-1 .content-header {
  margin-bottom: 5rem;
}

.calltoaction-csc-1 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction-csc-1 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction-csc-1 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-csc-1 .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction-csc-1 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction-csc-1 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction-csc-1 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction-csc-1 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction-csc-1 .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction-csc-1 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction-csc-1 .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction-csc-1 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction-csc-1 .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction-csc-1 .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction-csc-1 .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction-csc-1 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction-csc-1 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction-csc-1 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-csc-1 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction-csc-1 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction-csc-1 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction-csc-1 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction-csc-1 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction-csc-1 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction-csc-1 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction-csc-1 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction-csc-1 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction-csc-1 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction-csc-1 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction-csc-1 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction-csc-1 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-csc-1 .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction-csc-1 .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction-csc-1 .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction-csc-1 .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction-csc-1 .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction-csc-1 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-csc-1 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction-csc-1 .cta-section {
  /*margin-top: 4rem;*/
  margin-top: 0 !important;
}

.calltoaction-csc-1 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .calltoaction-csc-1 .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction-csc-1 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-csc-1 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction-csc-1 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction-csc-1 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction-csc-1 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction-csc-1 .cta-section .cta-card .btn-primary,
.calltoaction-csc-1 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-csc-1 .cta-section .cta-card .btn-primary i,
.calltoaction-csc-1 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction-csc-1 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction-csc-1 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction-csc-1 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.calltoaction-csc-1 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Calltoaction 02 Section
--------------------------------------------------------------*/
.calltoaction-02 {
  padding-top: 120px;
  position: relative;
  clip-path: inset(0);
  padding-bottom: 120px;
}

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

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

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

.calltoaction-02 h3 {
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-02 p {
  color: var(--default-color);
}

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

.calltoaction-02 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.calltoaction-02 strong {
  color: #e77339;
}

/*--------------------------------------------------------------
# Calltoaction S1 Section
--------------------------------------------------------------*/
.calltoaction-s1 {
  position: relative;
  overflow: hidden;
}

.calltoaction-s1 .content-header {
  margin-bottom: 5rem;
}

.calltoaction-s1 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction-s1 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction-s1 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s1 .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction-s1 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction-s1 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction-s1 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction-s1 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction-s1 .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction-s1 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction-s1 .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction-s1 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction-s1 .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction-s1 .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction-s1 .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction-s1 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction-s1 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction-s1 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s1 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction-s1 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction-s1 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction-s1 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction-s1 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction-s1 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction-s1 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction-s1 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction-s1 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction-s1 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction-s1 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction-s1 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction-s1 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s1 .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction-s1 .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction-s1 .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction-s1 .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction-s1 .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction-s1 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s1 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction-s1 .cta-section {
  margin-top: 4rem;
}

.calltoaction-s1 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .calltoaction-s1 .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction-s1 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s1 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction-s1 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction-s1 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction-s1 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction-s1 .cta-section .cta-card .btn-primary,
.calltoaction-s1 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s1 .cta-section .cta-card .btn-primary i,
.calltoaction-s1 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction-s1 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction-s1 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction-s1 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.calltoaction-s1 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# Cbox1undefinedundefined Section
--------------------------------------------------------------*/
.cbox1undefinedundefined {
  --background-color: #444444;
  --accent-color: #444444;
  padding: 12px 0;
}

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

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

.cbox1undefinedundefined .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

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

/*--------------------------------------------------------------
# Calltoaction S2 Section
--------------------------------------------------------------*/
.calltoaction-s2 {
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.calltoaction-s2 .content-header {
  margin-bottom: 5rem;
}

.calltoaction-s2 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction-s2 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction-s2 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s2 .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction-s2 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction-s2 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction-s2 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction-s2 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction-s2 .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction-s2 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction-s2 .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction-s2 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction-s2 .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction-s2 .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction-s2 .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction-s2 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction-s2 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction-s2 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s2 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction-s2 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction-s2 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction-s2 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction-s2 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction-s2 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction-s2 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction-s2 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction-s2 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction-s2 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction-s2 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction-s2 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction-s2 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s2 .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction-s2 .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction-s2 .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction-s2 .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction-s2 .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction-s2 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s2 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction-s2 .cta-section {
  margin-top: 4rem;
}

.calltoaction-s2 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .calltoaction-s2 .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction-s2 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s2 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction-s2 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction-s2 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction-s2 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction-s2 .cta-section .cta-card .btn-primary,
.calltoaction-s2 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s2 .cta-section .cta-card .btn-primary i,
.calltoaction-s2 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction-s2 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction-s2 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction-s2 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.calltoaction-s2 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# Calltoaction S3 Section
--------------------------------------------------------------*/
.calltoaction-s3 {
  background: black;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.calltoaction-s3 .content-header {
  margin-bottom: 5rem;
}

.calltoaction-s3 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction-s3 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction-s3 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s3 .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction-s3 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction-s3 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction-s3 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction-s3 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction-s3 .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction-s3 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction-s3 .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction-s3 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction-s3 .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction-s3 .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction-s3 .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction-s3 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction-s3 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction-s3 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s3 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction-s3 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction-s3 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction-s3 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction-s3 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction-s3 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction-s3 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction-s3 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction-s3 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction-s3 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction-s3 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction-s3 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction-s3 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s3 .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction-s3 .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction-s3 .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction-s3 .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction-s3 .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction-s3 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s3 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction-s3 .cta-section {
  margin-top: 4rem;
}

.calltoaction-s3 .cta-section .cta-card {
  background: var(--surface-color);
  background: radial-gradient(61.29% 94.78% at 58.78% 107.81%, rgba(99, 99, 99, 0.6) 0, rgba(38, 33, 73, 0)), linear-gradient(180deg, rgba(103, 69, 69, 0.6), rgba(38, 33, 73, 0));
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: rgba(255, 255, 255, 0.1019607843);
  border-width: 2px;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .calltoaction-s3 .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction-s3 .cta-section .cta-card h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s3 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction-s3 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: silver;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction-s3 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction-s3 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction-s3 .cta-section .cta-card .btn-s3 {
  --bg-color-1: hsla(0, 0%, 100%, 0);
  --bg-color-2: hsla(0, 0%, 100%, 0);
  --bg-color-3: #077ac7;
  --bg-color-4: #6b21ef;
  background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2)), linear-gradient(141deg, var(--bg-color-3), var(--bg-color-4));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  transition-duration: 0.4s, 0.3s, 0.3s, 0.3s, 0.3s;
  transition-property: box-shadow, --bg-color-1, --bg-color-2, --bg-color-3, --bg-color-4;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94), linear, linear, linear, linear;
  border-radius: 0.5rem;
}

.calltoaction-s3 .cta-section .cta-card .btn-primary,
.calltoaction-s3 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s3 .cta-section .cta-card .btn-primary i,
.calltoaction-s3 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction-s3 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction-s3 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction-s3 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.calltoaction-s3 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# Calltoaction S2 It Sec 1 Section
--------------------------------------------------------------*/
.calltoaction-s2-it-sec-1 {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.calltoaction-s2-it-sec-1 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.calltoaction-s2-it-sec-1 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.calltoaction-s2-it-sec-1 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.calltoaction-s2-it-sec-1 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.calltoaction-s2-it-sec-1 .features .feature-item:hover {
  transform: translateY(-2px);
}

.calltoaction-s2-it-sec-1 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.calltoaction-s2-it-sec-1 .features .feature-item span {
  font-weight: 500;
}

.calltoaction-s2-it-sec-1 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.calltoaction-s2-it-sec-1 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.calltoaction-s2-it-sec-1 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.calltoaction-s2-it-sec-1 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.calltoaction-s2-it-sec-1 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.calltoaction-s2-it-sec-1 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.calltoaction-s2-it-sec-1 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calltoaction-s2-it-sec-1 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.calltoaction-s2-it-sec-1 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calltoaction-s2-it-sec-1 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.calltoaction-s2-it-sec-1 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.calltoaction-s2-it-sec-1 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.calltoaction-s2-it-sec-1 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.calltoaction-s2-it-sec-1 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.calltoaction-s2-it-sec-1 .decoration .circle-1,
.calltoaction-s2-it-sec-1 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.calltoaction-s2-it-sec-1 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.calltoaction-s2-it-sec-1 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .calltoaction-s2-it-sec-1 {
    padding: 2rem;
  }

  .calltoaction-s2-it-sec-1 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .calltoaction-s2-it-sec-1 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# Calltoaction S5 2 Section
--------------------------------------------------------------*/
.calltoaction-s5-2 {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.calltoaction-s5-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.calltoaction-s5-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.calltoaction-s5-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.calltoaction-s5-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.calltoaction-s5-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.calltoaction-s5-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.calltoaction-s5-2 .features .feature-item span {
  font-weight: 500;
}

.calltoaction-s5-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.calltoaction-s5-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.calltoaction-s5-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.calltoaction-s5-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.calltoaction-s5-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.calltoaction-s5-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.calltoaction-s5-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calltoaction-s5-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.calltoaction-s5-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calltoaction-s5-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.calltoaction-s5-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.calltoaction-s5-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.calltoaction-s5-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.calltoaction-s5-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.calltoaction-s5-2 .decoration .circle-1,
.calltoaction-s5-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.calltoaction-s5-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.calltoaction-s5-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .calltoaction-s5-2 {
    padding: 2rem;
  }

  .calltoaction-s5-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .calltoaction-s5-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# Cbox1undefinedundefined 3 Section
--------------------------------------------------------------*/
.cbox1undefinedundefined-3 {
  --background-color: #444444;
  --accent-color: #444444;
  padding: 12px 0;
}

.cbox1undefinedundefined-3 .swiper {
  padding: 10px 0;
}

.cbox1undefinedundefined-3 .swiper-wrapper {
  height: auto;
}

.cbox1undefinedundefined-3 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

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

/*--------------------------------------------------------------
# Calltoaction S4 Section
--------------------------------------------------------------*/
.calltoaction-s4 {
  padding-top: 120px;
  position: relative;
  clip-path: inset(0);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

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

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

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

.calltoaction-s4 h3 {
  color: var(--default-color);
  color: #bcbcbc;
  color: var(--background-color);
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-s4 p {
  color: var(--default-color);
}

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

.calltoaction-s4 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.calltoaction-s4 strong {
  color: #e77339;
}

.calltoaction-s4 .content-header {
  margin-bottom: 5rem;
}

.calltoaction-s4 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.calltoaction-s4 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.calltoaction-s4 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s4 .content-header h2 {
    font-size: 2.5rem;
  }
}

.calltoaction-s4 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calltoaction-s4 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.calltoaction-s4 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.calltoaction-s4 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.calltoaction-s4 .service-card:hover .service-overlay {
  opacity: 1;
}

.calltoaction-s4 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.calltoaction-s4 .service-card:hover h3.blue {
  color: #3b82f6;
}

.calltoaction-s4 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.calltoaction-s4 .service-card:hover h3.emerald {
  color: #10b981;
}

.calltoaction-s4 .service-card:hover h3.orange {
  color: #f97316;
}

.calltoaction-s4 .service-card:hover h3.indigo {
  color: #6366f1;
}

.calltoaction-s4 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.calltoaction-s4 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.calltoaction-s4 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s4 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.calltoaction-s4 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.calltoaction-s4 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.calltoaction-s4 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.calltoaction-s4 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.calltoaction-s4 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.calltoaction-s4 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.calltoaction-s4 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.calltoaction-s4 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.calltoaction-s4 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.calltoaction-s4 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.calltoaction-s4 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.calltoaction-s4 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s4 .service-card .service-link.purple {
  color: #8b5cf6;
}

.calltoaction-s4 .service-card .service-link.emerald {
  color: #10b981;
}

.calltoaction-s4 .service-card .service-link.orange {
  color: #f97316;
}

.calltoaction-s4 .service-card .service-link.indigo {
  color: #6366f1;
}

.calltoaction-s4 .service-card .service-link.cyan {
  color: #06b6d4;
}

.calltoaction-s4 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.calltoaction-s4 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.calltoaction-s4 .cta-section {
  margin-top: 4rem;
}

.calltoaction-s4 .cta-section .cta-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .calltoaction-s4 .cta-section .cta-card {
    padding: 2rem;
  }
}

.calltoaction-s4 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .calltoaction-s4 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.calltoaction-s4 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, black, transparent 40%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.calltoaction-s4 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .calltoaction-s4 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.calltoaction-s4 .cta-section .cta-card .btn-primary,
.calltoaction-s4 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calltoaction-s4 .cta-section .cta-card .btn-primary i,
.calltoaction-s4 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.calltoaction-s4 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.calltoaction-s4 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.calltoaction-s4 .cta-section .cta-card .btn-secondary {
  background-color: white;
  color: #aa0;
  border: 2px solid #aa0;
}

.calltoaction-s4 .cta-section .cta-card .btn-secondary:hover {
  background: color-mix(in srgb, #eee, transparent 15%);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Cta It Grundschutz 1 Section
--------------------------------------------------------------*/
.cta-it-grundschutz-1 {
  position: relative;
  clip-path: inset(0);
  position: relative;
  overflow: hidden;
}

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

.cta-it-grundschutz-1:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.cta-it-grundschutz-1 .container {
  position: relative;
  z-index: 3;
}

.cta-it-grundschutz-1 h3 {
  color: var(--default-color);
  color: #bcbcbc;
  color: var(--background-color);
  font-size: 28px;
  font-weight: 700;
}

.cta-it-grundschutz-1 p {
  color: var(--default-color);
}

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

.cta-it-grundschutz-1 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.cta-it-grundschutz-1 strong {
  color: #e77339;
}

.cta-it-grundschutz-1 .content-header {
  margin-bottom: 5rem;
}

.cta-it-grundschutz-1 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.cta-it-grundschutz-1 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.cta-it-grundschutz-1 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cta-it-grundschutz-1 .content-header h2 {
    font-size: 2.5rem;
  }
}

.cta-it-grundschutz-1 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-it-grundschutz-1 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-it-grundschutz-1 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.cta-it-grundschutz-1 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-it-grundschutz-1 .service-card:hover .service-overlay {
  opacity: 1;
}

.cta-it-grundschutz-1 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.cta-it-grundschutz-1 .service-card:hover h3.blue {
  color: #3b82f6;
}

.cta-it-grundschutz-1 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.cta-it-grundschutz-1 .service-card:hover h3.emerald {
  color: #10b981;
}

.cta-it-grundschutz-1 .service-card:hover h3.orange {
  color: #f97316;
}

.cta-it-grundschutz-1 .service-card:hover h3.indigo {
  color: #6366f1;
}

.cta-it-grundschutz-1 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.cta-it-grundschutz-1 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.cta-it-grundschutz-1 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-it-grundschutz-1 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.cta-it-grundschutz-1 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.cta-it-grundschutz-1 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.cta-it-grundschutz-1 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.cta-it-grundschutz-1 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.cta-it-grundschutz-1 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.cta-it-grundschutz-1 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.cta-it-grundschutz-1 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.cta-it-grundschutz-1 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-it-grundschutz-1 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.cta-it-grundschutz-1 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.cta-it-grundschutz-1 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.cta-it-grundschutz-1 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-it-grundschutz-1 .service-card .service-link.purple {
  color: #8b5cf6;
}

.cta-it-grundschutz-1 .service-card .service-link.emerald {
  color: #10b981;
}

.cta-it-grundschutz-1 .service-card .service-link.orange {
  color: #f97316;
}

.cta-it-grundschutz-1 .service-card .service-link.indigo {
  color: #6366f1;
}

.cta-it-grundschutz-1 .service-card .service-link.cyan {
  color: #06b6d4;
}

.cta-it-grundschutz-1 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-it-grundschutz-1 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.cta-it-grundschutz-1 .cta-section {
  /*margin-top: 4rem;*/
}

.cta-it-grundschutz-1 .cta-section .cta-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .cta-it-grundschutz-1 .cta-section .cta-card {
    padding: 2rem;
  }
}

.cta-it-grundschutz-1 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cta-it-grundschutz-1 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.cta-it-grundschutz-1 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, black, transparent 40%);
  margin-bottom: 2rem;
  max-width: 48rem;
  /*32rem*/
  margin-left: auto;
  margin-right: auto;
}

.cta-it-grundschutz-1 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-it-grundschutz-1 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-primary,
.cta-it-grundschutz-1 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-primary i,
.cta-it-grundschutz-1 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-secondary {
  background-color: white;
  color: #aa0;
  border: 2px solid #aa0;
}

.cta-it-grundschutz-1 .cta-section .cta-card .btn-secondary:hover {
  background: color-mix(in srgb, #eee, transparent 15%);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Imprint Section
--------------------------------------------------------------*/
.imprint {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}

.imprint span.mcw-1 {
  width: 4ch;
  float: left;
}

.imprint span.mcw-3 {
  width: 3ch;
  float: left;
}

.imprint span.mcw-2 {
  width: 9ch;
  float: left;
}

.imprint span.mcw-b1 {
  width: 7ch;
  float: left;
}

.imprint .line-adjust {
  line-height: 1.26;
  margin-top: 0.26rem;
  margin-bottom: 0.26rem;
}

/*--------------------------------------------------------------
# Privacy Policy Section
--------------------------------------------------------------*/
.privacy-policy {
  /* Add your styles here */
}

.privacy-policy span.mcw-1 {
  width: 4ch;
  float: left;
}

.privacy-policy span.mcw-2 {
  width: 9ch;
  float: left;
}

.privacy-policy span.mcw-b1 {
  width: 7ch;
  float: left;
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Terms Of Use Section
--------------------------------------------------------------*/
.terms-of-use {
  font-size: 1rem;
  line-height: 1.7;
}

.terms-of-use .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.terms-of-use .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-of-use .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.terms-of-use .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-use .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.terms-of-use .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.terms-of-use .privacy-content .content-section {
  margin-bottom: 50px;
}

.terms-of-use .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-use .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.terms-of-use .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.terms-of-use .privacy-content .content-section p {
  margin-bottom: 20px;
}

.terms-of-use .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-use .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.terms-of-use .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.terms-of-use .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.terms-of-use .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-use .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-use .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-use .privacy-contact p {
  margin-bottom: 20px;
}

.terms-of-use .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.terms-of-use .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.terms-of-use .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.terms-of-use .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .terms-of-use {
    font-size: 12pt;
    line-height: 1.5;
  }

  .terms-of-use .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .terms-of-use h1 {
    font-size: 24pt;
  }

  .terms-of-use h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .terms-of-use h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .terms-of-use p,
  .terms-of-use ul {
    page-break-inside: avoid;
  }

  .terms-of-use .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .terms-of-use .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .terms-of-use .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .terms-of-use .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .terms-of-use .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .terms-of-use .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .terms-of-use .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

.terms-of-use .httpref {
  font-size: small;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

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

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

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

.contact .mbz-form-group-privacy-policy {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/*--------------------------------------------------------------
# Kontakt Info Section
--------------------------------------------------------------*/
.kontakt-info .php-email-form {
  width: 100%;
}

.kontakt-info .php-email-form .form-group {
  padding-bottom: 8px;
}

.kontakt-info .php-email-form input,
.kontakt-info .php-email-form textarea,
.kontakt-info .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.kontakt-info .php-email-form input:focus,
.kontakt-info .php-email-form textarea:focus,
.kontakt-info .php-email-form select:focus {
  border-color: var(--accent-color);
}

.kontakt-info .php-email-form input::placeholder,
.kontakt-info .php-email-form textarea::placeholder,
.kontakt-info .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.kontakt-info .php-email-form input,
.kontakt-info .php-email-form select {
  height: 44px;
}

.kontakt-info .php-email-form textarea {
  padding: 10px 12px;
}

.kontakt-info .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.kontakt-info .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Getsupport Section
--------------------------------------------------------------*/
.getsupport {
  --background-color: #fff2dd;
  --default-color: #000000;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding-bottom: 40px;
  padding-top: 40px;
  background: #FFF2DD;
  background: linear-gradient(180deg, rgb(250, 250, 250) 0%, rgba(255, 229, 153, 0.63) 100%);
}

.getsupport h2 {
  padding-bottom: 10px !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #5b5b5b;
}

.getsupport h2:after {
  display: none !important;
}

.getsupport h2:before {
  display: none !important;
}

.getsupport .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getsupport .mbz-tab-1 {
  padding-left: 6px;
}

.getsupport .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getsupport .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getsupport .features-card:last-child {
  margin-bottom: 0;
}

.getsupport .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getsupport .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getsupport .feature-image:hover img {
  transform: scale(1.05);
}

.getsupport .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getsupport .feature-image .overlay-icon i {
  font-size: 24px;
}

.getsupport .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getsupport .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .getsupport .feature-content .content-inner {
    padding: 2rem;
  }
}

.getsupport .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getsupport h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getsupport h3 {
    font-size: 24px;
  }
}

.getsupport h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getsupport p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getsupport .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getsupport .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getsupport .feature-list li:last-child {
  margin-bottom: 0;
}

.getsupport .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getsupport .feature-action {
  margin-top: 1.5rem;
}

.getsupport .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getsupport .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getsupport .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getsupport .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getsupport .feature-image,
  .getsupport .feature-content {
    height: auto;
  }

  .getsupport .feature-content .content-inner {
    padding: 2rem;
  }

  .getsupport h3 {
    font-size: 22px;
  }

  .getsupport h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getsupport Info 1 Section
--------------------------------------------------------------*/
.getsupport-info-1 {
  --background-color: rgba(255, 229, 153, 0.63);
  padding-top: 40px;
}

.getsupport-info-1 .psmaller {
  font-size: 0.625em;
}

.getsupport-info-1 .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.getsupport-info-1 .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

.getsupport-info-1 .service-card:hover .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.getsupport-info-1 .service-card:hover h3,
.getsupport-info-1 .service-card:hover p {
  color: var(--contrast-color);
}

.getsupport-info-1 .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.getsupport-info-1 .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.getsupport-info-1 .service-card:hover a {
  color: var(--contrast-color);
}

.getsupport-info-1 .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.getsupport-info-1 .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.getsupport-info-1 .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getsupport-info-1 .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.getsupport-info-1 .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.getsupport-info-1 .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.getsupport-info-1 .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.getsupport-info-1 .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.getsupport-info-1 .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.getsupport-info-1 .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.getsupport-info-1 .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Getsupport Form Section
--------------------------------------------------------------*/
.getsupport-form {
  --background-color: rgba(188, 188, 188, 0.34);
  --default-color: #000000;
  --accent-color: #0b5394;
  --surface-color: #ffffff;
  --contrast-color: rgba(0, 76, 144, 0.9);
}

.getsupport-form .psmaller {
  font-size: 0.825em;
  width: 82%;
}

.getsupport-form .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.getsupport-form .info-card:hover {
  transform: translateY(-5px);
}

.getsupport-form .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.getsupport-form .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.getsupport-form .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.getsupport-form .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.getsupport-form .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.getsupport-form .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.getsupport-form .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.getsupport-form .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.getsupport-form .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.getsupport-form .form-wrapper textarea.form-control {
  min-height: 160px;
}

.getsupport-form .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: white;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.getsupport-form .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .psmaller {
  font-size: 0.625em;
}

.contact-3 ._86277sb {
  --_86277s7: 1px;
  --_1c8hz7012: 5px;
  --_86277s0: white;
  --_86277s1: var(--accent-color);
  --_1c8hz701: 2px;
  --_1c8hz702: 2px;
  background-color: var(--_86277s0);
  border-color: rgba(222, 222, 222, 0.25);
  border-radius: var(--_1c8hz7012);
  border-style: solid;
  border-width: 1px;
  border-width: var(--_86277s7);
  display: flex;
  flex-direction: column;
  gap: var(--_1c8hz701);
  padding: var(--_1c8hz701) var(--_1c8hz702);
  position: relative;
  transition: box-shadow 0.15s ease-out;
}

.contact-3 ._86277sb label {
  font-size: 0.8em;
}

.contact-3 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-3 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-3 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-3 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-3 .info-box {
    padding: 1.5rem;
  }
}

.contact-3 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-3 .info-item:last-child {
  margin-bottom: 0;
}

.contact-3 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-3 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-3 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-3 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-3 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-3 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-3 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  /* mjm */
  padding-bottom: 0;
  margin-bottom: 0;
  /* mjm */
}

@media (max-width: 992px) {
  .contact-3 .contact-form {
    padding: 1.5rem;
  }
}

.contact-3 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-3 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-3 .contact-form .form-control,
.contact-3 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-3 .contact-form .form-control:focus,
.contact-3 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-3 .contact-form .form-control::placeholder,
.contact-3 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-3 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-3 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-3 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Contactundefined Section
--------------------------------------------------------------*/
.contactundefined .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.contactundefined .info-card:hover {
  transform: translateY(-5px);
}

.contactundefined .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contactundefined .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contactundefined .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contactundefined .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.contactundefined .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contactundefined .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contactundefined .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contactundefined .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contactundefined .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contactundefined .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contactundefined .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contactundefined .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Getsupport Ticket Info 1 Section
--------------------------------------------------------------*/
.getsupport-ticket-info-1 {
  --background-color: #b6d7a8;
  --default-color: #000000;
  --heading-color: #5b5b5b;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding: 2rem !important;
  margin: 0 !important;
}

.getsupport-ticket-info-1 h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.getsupport-ticket-info-1 h2:after {
  display: none !important;
}

.getsupport-ticket-info-1 h2:before {
  display: none !important;
}

.getsupport-ticket-info-1 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getsupport-ticket-info-1 .mbz-tab-1 {
  padding-left: 6px;
}

.getsupport-ticket-info-1 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getsupport-ticket-info-1 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getsupport-ticket-info-1 .features-card:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-1 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getsupport-ticket-info-1 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getsupport-ticket-info-1 .feature-image:hover img {
  transform: scale(1.05);
}

.getsupport-ticket-info-1 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getsupport-ticket-info-1 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getsupport-ticket-info-1 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getsupport-ticket-info-1 .feature-content .content-inner {
  padding-top: 1rem !important;
  padding-bottom: 0.4rem !important;
  padding-left: 6rem;
  padding-right: 6rem;
}

.getsupport-ticket-info-1 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getsupport-ticket-info-1 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getsupport-ticket-info-1 h3 {
    font-size: 24px;
  }
}

.getsupport-ticket-info-1 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getsupport-ticket-info-1 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getsupport-ticket-info-1 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getsupport-ticket-info-1 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getsupport-ticket-info-1 .feature-list li:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-1 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getsupport-ticket-info-1 .feature-action {
  margin-top: 1.5rem;
}

.getsupport-ticket-info-1 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getsupport-ticket-info-1 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getsupport-ticket-info-1 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getsupport-ticket-info-1 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getsupport-ticket-info-1 .feature-image,
  .getsupport-ticket-info-1 .feature-content {
    height: auto;
  }

  .getsupport-ticket-info-1 .feature-content .content-inner {
    padding: 2rem;
  }

  .getsupport-ticket-info-1 h3 {
    font-size: 22px;
  }

  .getsupport-ticket-info-1 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getsupport Ticket Info 2 Section
--------------------------------------------------------------*/
.getsupport-ticket-info-2 {
  --background-color: #b6d7a8;
  --default-color: #000000;
  --heading-color: #5b5b5b;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding: 2rem !important;
  margin: 0 !important;
}

.getsupport-ticket-info-2 h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.getsupport-ticket-info-2 h2:after {
  display: none !important;
}

.getsupport-ticket-info-2 h2:before {
  display: none !important;
}

.getsupport-ticket-info-2 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getsupport-ticket-info-2 .mbz-tab-1 {
  padding-left: 6px;
}

.getsupport-ticket-info-2 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getsupport-ticket-info-2 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getsupport-ticket-info-2 .features-card:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-2 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getsupport-ticket-info-2 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getsupport-ticket-info-2 .feature-image:hover img {
  transform: scale(1.05);
}

.getsupport-ticket-info-2 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getsupport-ticket-info-2 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getsupport-ticket-info-2 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getsupport-ticket-info-2 .feature-content .content-inner {
  padding-top: 1rem !important;
  padding-bottom: 0.4rem !important;
  padding-left: 6rem;
  padding-right: 6rem;
}

.getsupport-ticket-info-2 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getsupport-ticket-info-2 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getsupport-ticket-info-2 h3 {
    font-size: 24px;
  }
}

.getsupport-ticket-info-2 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getsupport-ticket-info-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getsupport-ticket-info-2 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getsupport-ticket-info-2 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getsupport-ticket-info-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getsupport-ticket-info-2 .feature-action {
  margin-top: 1.5rem;
}

.getsupport-ticket-info-2 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getsupport-ticket-info-2 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getsupport-ticket-info-2 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getsupport-ticket-info-2 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getsupport-ticket-info-2 .feature-image,
  .getsupport-ticket-info-2 .feature-content {
    height: auto;
  }

  .getsupport-ticket-info-2 .feature-content .content-inner {
    padding: 2rem;
  }

  .getsupport-ticket-info-2 h3 {
    font-size: 22px;
  }

  .getsupport-ticket-info-2 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getsupport Ticket Info 4 Section
--------------------------------------------------------------*/
.getsupport-ticket-info-4 {
  --background-color: #b6d7a8;
  --default-color: #000000;
  --heading-color: #5b5b5b;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding: 0;
}

.getsupport-ticket-info-4 h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.getsupport-ticket-info-4 h2:after {
  display: none !important;
}

.getsupport-ticket-info-4 h2:before {
  display: none !important;
}

.getsupport-ticket-info-4 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getsupport-ticket-info-4 .mbz-tab-1 {
  padding-left: 6px;
}

.getsupport-ticket-info-4 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getsupport-ticket-info-4 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getsupport-ticket-info-4 .features-card:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-4 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getsupport-ticket-info-4 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getsupport-ticket-info-4 .feature-image:hover img {
  transform: scale(1.05);
}

.getsupport-ticket-info-4 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getsupport-ticket-info-4 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getsupport-ticket-info-4 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getsupport-ticket-info-4 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .getsupport-ticket-info-4 .feature-content .content-inner {
    padding: 2rem;
  }
}

.getsupport-ticket-info-4 .feature-content-info {
  padding: 0;
  margin: 0;
  background-color: #fff2cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.getsupport-ticket-info-4 .feature-content-info .content-inner-info {
  height: 40px;
  margin: 10px;
  width: 100%;
  padding: 0;
  background-color: #f4f6f6;
  text-align: center;
}

.getsupport-ticket-info-4 .feature-content-info .content-inner-info h5 {
  font-size: 1.25rem;
  line-height: 40px;
  text-align: center;
}

.getsupport-ticket-info-4 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getsupport-ticket-info-4 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getsupport-ticket-info-4 h3 {
    font-size: 24px;
  }
}

.getsupport-ticket-info-4 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getsupport-ticket-info-4 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getsupport-ticket-info-4 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getsupport-ticket-info-4 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getsupport-ticket-info-4 .feature-list li:last-child {
  margin-bottom: 0;
}

.getsupport-ticket-info-4 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getsupport-ticket-info-4 .feature-action {
  margin-top: 1.5rem;
}

.getsupport-ticket-info-4 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getsupport-ticket-info-4 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getsupport-ticket-info-4 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getsupport-ticket-info-4 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getsupport-ticket-info-4 .feature-image,
  .getsupport-ticket-info-4 .feature-content {
    height: auto;
  }

  .getsupport-ticket-info-4 .feature-content .content-inner {
    padding: 2rem;
  }

  .getsupport-ticket-info-4 h3 {
    font-size: 22px;
  }

  .getsupport-ticket-info-4 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getticket 2 Section
--------------------------------------------------------------*/
.getticket-2 {
  --background-color: #d9ead3;
  --default-color: #000000;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding-bottom: 60px;
  padding-top: 40px;
  background: #fafafa;
  background: linear-gradient(166deg, rgb(250, 250, 250) 0%, rgba(231, 115, 57, 0.41) 14%, rgb(250, 250, 250) 31%, rgb(232, 241, 229) 55%, rgba(217, 234, 211, 0.63) 100%);
}

.getticket-2 .section-title div {
  margin-right: 40px;
}

.getticket-2 h2 {
  font-size: 2rem;
  line-height: 2.2rem;
  padding-bottom: 10px;
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #5b5b5b;
}

.getticket-2 h2:after {
  display: none !important;
}

.getticket-2 h2:before {
  display: none !important;
}

.getticket-2 h2 span {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: rgb(117, 128, 150);
}

.getticket-2 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getticket-2 .mbz-tab-1 {
  padding-left: 6px;
}

.getticket-2 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getticket-2 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getticket-2 .features-card:last-child {
  margin-bottom: 0;
}

.getticket-2 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getticket-2 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getticket-2 .feature-image:hover img {
  transform: scale(1.05);
}

.getticket-2 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getticket-2 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getticket-2 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getticket-2 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 1rem;
}

@media (max-width: 992px) {
  .getticket-2 .feature-content .content-inner {
    padding: 2rem;
  }
}

.getticket-2 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getticket-2 h3 {
  color: var(--heading-color);
  color: rgb(58, 59, 60);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getticket-2 h3 {
    font-size: 24px;
  }
}

.getticket-2 h4 {
  text-align: center;
  color: rgb(60, 60, 60);
  color: rgb(60, 59, 58);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getticket-2 h4 span {
  font-weight: bold;
}

.getticket-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getticket-2 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getticket-2 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getticket-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.getticket-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getticket-2 .feature-action {
  margin-top: 1.5rem;
}

.getticket-2 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getticket-2 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getticket-2 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getticket-2 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getticket-2 .feature-image,
  .getticket-2 .feature-content {
    height: auto;
  }

  .getticket-2 .feature-content .content-inner {
    padding: 2rem;
  }

  .getticket-2 h3 {
    font-size: 22px;
  }

  .getticket-2 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getticket 3 Section
--------------------------------------------------------------*/
.getticket-3 {
  padding: 0;
  margin: 0;
}

.getticket-3 .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.getticket-3 .hero-f0 {
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.66) 0%, rgba(205, 97, 85, 0.66) 20%, rgba(93, 173, 226, 0.66) 40%, rgba(88, 214, 141, 0.66) 60%, rgba(220, 118, 51, 0.66) 80%, rgba(153, 163, 164, 0.66) 100%);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-h1 7s linear infinite;
}

@keyframes BackgroundGradient-h1 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.getticket-3 .hero-f0-bg {
  background-color: white;
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 0 20%;
  background-size: cover;
}

.getticket-3 h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.getticket-3 h2:after {
  display: none !important;
}

.getticket-3 h2:before {
  display: none !important;
}

.getticket-3 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getticket-3 .mbz-tab-1 {
  padding-left: 6px;
}

.getticket-3 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getticket-3 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getticket-3 .features-card:last-child {
  margin-bottom: 0;
}

.getticket-3 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getticket-3 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getticket-3 .feature-image:hover img {
  transform: scale(1.05);
}

.getticket-3 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getticket-3 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getticket-3 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getticket-3 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .getticket-3 .feature-content .content-inner {
    padding: 2rem;
  }
}

.getticket-3 .feature-content-info {
  padding: 0;
  margin: 0;
  background-color: #fff2cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.getticket-3 .feature-content-info .content-inner-info {
  height: auto;
  margin: 10px;
  width: 100%;
  padding: 0;
  background-color: #f4f6f6;
}

.getticket-3 .feature-content-info .content-inner-info h5 {
  color: rgb(58, 59, 60);
  font-size: 1.25rem;
  line-height: normal;
  padding: 18px;
  padding-bottom: 10px;
}

.getticket-3 .feature-content-info .content-inner-info h5 a:hover {
  text-decoration: underline;
}

.getticket-3 .feature-content-info .content-inner-info h5 a {
  color: #0b5394;
}

.getticket-3 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getticket-3 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getticket-3 h3 {
    font-size: 24px;
  }
}

.getticket-3 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getticket-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.getticket-3 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getticket-3 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getticket-3 .feature-list li:last-child {
  margin-bottom: 0;
}

.getticket-3 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getticket-3 .feature-action {
  margin-top: 1.5rem;
}

.getticket-3 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getticket-3 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getticket-3 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getticket-3 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getticket-3 .feature-image,
  .getticket-3 .feature-content {
    height: auto;
  }

  .getticket-3 .feature-content .content-inner {
    padding: 2rem;
  }

  .getticket-3 h3 {
    font-size: 22px;
  }

  .getticket-3 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getticket Form Section
--------------------------------------------------------------*/
.getticket-form .psmaller {
  font-size: 0.625em;
}

.getticket-form ._86277sb {
  --_86277s7: 1px;
  --_1c8hz7012: 5px;
  --_86277s0: white;
  --_86277s1: var(--accent-color);
  --_1c8hz701: 2px;
  --_1c8hz702: 2px;
  background-color: var(--_86277s0);
  border-color: rgba(222, 222, 222, 0.25);
  border-radius: var(--_1c8hz7012);
  border-style: solid;
  border-width: 1px;
  border-width: var(--_86277s7);
  display: flex;
  flex-direction: column;
  gap: var(--_1c8hz701);
  padding: var(--_1c8hz701) var(--_1c8hz702);
  position: relative;
  transition: box-shadow 0.15s ease-out;
}

.getticket-form ._86277sb label {
  font-size: 0.8em;
}

.getticket-form .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.getticket-form .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .getticket-form .info-box h3 {
    font-size: 1.75rem;
  }
}

.getticket-form .info-box p {
  opacity: 0.8;
}

.getticket-form .info-box h6 {
  margin-bottom: 1rem;
  text-align: right;
}

.getticket-form .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .getticket-form .info-box {
    padding: 1.5rem;
  }
}

.getticket-form .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.getticket-form .info-item:last-child {
  margin-bottom: 0;
}

.getticket-form .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.getticket-form .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.getticket-form .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.getticket-form .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.getticket-form .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.getticket-form .info-item .content p:last-child {
  margin-bottom: 0;
}

.getticket-form .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .getticket-form .contact-form {
    padding: 1.5rem;
  }
}

.getticket-form .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .getticket-form .contact-form h3 {
    font-size: 1.75rem;
  }
}

.getticket-form .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.getticket-form .contact-form .form-control,
.getticket-form .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.getticket-form .contact-form .form-control:focus,
.getticket-form .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.getticket-form .contact-form .form-control::placeholder,
.getticket-form .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.getticket-form .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.getticket-form .contact-form .btn i {
  font-size: 1.25rem;
}

.getticket-form .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Getticket Section
--------------------------------------------------------------*/
.getticket {
  --background-color: #d9ead3;
  --default-color: #000000;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  padding-bottom: 20px;
  padding-top: 40px;
}

.getticket h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #5b5b5b;
}

.getticket h2:after {
  display: none !important;
}

.getticket h2:before {
  display: none !important;
}

.getticket .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getticket .mbz-tab-1 {
  padding-left: 6px;
}

.getticket .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getticket .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getticket .features-card:last-child {
  margin-bottom: 0;
}

.getticket .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getticket .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getticket .feature-image:hover img {
  transform: scale(1.05);
}

.getticket .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getticket .feature-image .overlay-icon i {
  font-size: 24px;
}

.getticket .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getticket .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .getticket .feature-content .content-inner {
    padding: 2rem;
  }
}

.getticket .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getticket h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getticket h3 {
    font-size: 24px;
  }
}

.getticket h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getticket p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.getticket .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getticket .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getticket .feature-list li:last-child {
  margin-bottom: 0;
}

.getticket .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getticket .feature-action {
  margin-top: 1.5rem;
}

.getticket .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getticket .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getticket .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getticket .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getticket .feature-image,
  .getticket .feature-content {
    height: auto;
  }

  .getticket .feature-content .content-inner {
    padding: 2rem;
  }

  .getticket h3 {
    font-size: 22px;
  }

  .getticket h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getticket Info 1 Section
--------------------------------------------------------------*/
.getticket-info-1 {
  --background-color: #b6d7a8;
  --default-color: #000000;
  --heading-color: #5b5b5b;
  --accent-color: #0b5394;
  --surface-color: #eeeeee;
  --contrast-color: rgba(0, 76, 144, 0.9);
  /*
  padding-bottom: 30px;
  padding-top: 30px;
  */
  padding: 0;
}

.getticket-info-1 h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.getticket-info-1 h2:after {
  display: none !important;
}

.getticket-info-1 h2:before {
  display: none !important;
}

.getticket-info-1 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.getticket-info-1 .mbz-tab-1 {
  padding-left: 6px;
}

.getticket-info-1 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.getticket-info-1 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.getticket-info-1 .features-card:last-child {
  margin-bottom: 0;
}

.getticket-info-1 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.getticket-info-1 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.getticket-info-1 .feature-image:hover img {
  transform: scale(1.05);
}

.getticket-info-1 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.getticket-info-1 .feature-image .overlay-icon i {
  font-size: 24px;
}

.getticket-info-1 .feature-content {
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.getticket-info-1 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .getticket-info-1 .feature-content .content-inner {
    padding: 2rem;
  }
}

.getticket-info-1 .feature-content-info {
  padding: 0;
  margin: 0;
  background-color: #fff2cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.getticket-info-1 .feature-content-info .content-inner-info {
  height: 40px;
  margin: 10px;
  width: 100%;
  /*
  border-color: aqua;
  border-size: 1px;
  border-style: solid;
  */
  padding: 0;
  background-color: #f4f6f6;
  text-align: center;
}

.getticket-info-1 .feature-content-info .content-inner-info h5 {
  font-size: 1.25rem;
  line-height: 40px;
  /* incompatibel..
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  */
  text-align: center;
  /*
  background-color: red; 
  */
}

.getticket-info-1 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.getticket-info-1 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .getticket-info-1 h3 {
    font-size: 24px;
  }
}

.getticket-info-1 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.getticket-info-1 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.getticket-info-1 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.getticket-info-1 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.getticket-info-1 .feature-list li:last-child {
  margin-bottom: 0;
}

.getticket-info-1 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.getticket-info-1 .feature-action {
  margin-top: 1.5rem;
}

.getticket-info-1 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.getticket-info-1 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.getticket-info-1 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.getticket-info-1 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .getticket-info-1 .feature-image,
  .getticket-info-1 .feature-content {
    height: auto;
  }

  .getticket-info-1 .feature-content .content-inner {
    padding: 2rem;
  }

  .getticket-info-1 h3 {
    font-size: 22px;
  }

  .getticket-info-1 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Getticket Form 1 Section
--------------------------------------------------------------*/
.getticket-form-1 {
  --background-color: rgba(188, 188, 188, 0.34);
  --default-color: #000000;
  --accent-color: #0b5394;
  --surface-color: #ffffff;
  --contrast-color: rgba(0, 76, 144, 0.9);
}

.getticket-form-1 .psmaller {
  font-size: 0.825em;
}

.getticket-form-1 .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.getticket-form-1 .info-card:hover {
  transform: translateY(-5px);
}

.getticket-form-1 .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.getticket-form-1 .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.getticket-form-1 .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.getticket-form-1 .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.getticket-form-1 .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.getticket-form-1 .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.getticket-form-1 .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.getticket-form-1 .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.getticket-form-1 .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.getticket-form-1 .form-wrapper textarea.form-control {
  min-height: 160px;
}

.getticket-form-1 .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: white;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.getticket-form-1 .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Getticket Form 2 Section
--------------------------------------------------------------*/
.getticket-form-2 {
  --background-color: #d9ead3;
}

.getticket-form-2 .psmaller {
  font-size: 0.625em;
}

.getticket-form-2 ._86277sb {
  --_86277s7: 1px;
  --_1c8hz7012: 5px;
  --_86277s0: white;
  --_86277s1: var(--accent-color);
  --_1c8hz701: 2px;
  --_1c8hz702: 2px;
  background-color: var(--_86277s0);
  border-color: rgba(222, 222, 222, 0.25);
  border-radius: var(--_1c8hz7012);
  border-style: solid;
  border-width: 1px;
  border-width: var(--_86277s7);
  display: flex;
  flex-direction: column;
  gap: var(--_1c8hz701);
  padding: var(--_1c8hz701) var(--_1c8hz702);
  position: relative;
  transition: box-shadow 0.15s ease-out;
}

.getticket-form-2 ._86277sb label {
  font-size: 0.8em;
}

.getticket-form-2 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.getticket-form-2 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .getticket-form-2 .info-box h3 {
    font-size: 1.75rem;
  }
}

.getticket-form-2 .info-box p {
  opacity: 0.8;
}

.getticket-form-2 .info-box h6 {
  margin-bottom: 1rem;
  text-align: right;
}

.getticket-form-2 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .getticket-form-2 .info-box {
    padding: 1.5rem;
  }
}

.getticket-form-2 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.getticket-form-2 .info-item:last-child {
  margin-bottom: 0;
}

.getticket-form-2 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.getticket-form-2 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.getticket-form-2 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.getticket-form-2 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.getticket-form-2 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.getticket-form-2 .info-item .content p:last-child {
  margin-bottom: 0;
}

.getticket-form-2 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .getticket-form-2 .contact-form {
    padding: 1.5rem;
  }
}

.getticket-form-2 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .getticket-form-2 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.getticket-form-2 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.getticket-form-2 .contact-form .form-control,
.getticket-form-2 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.getticket-form-2 .contact-form .form-control:focus,
.getticket-form-2 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.getticket-form-2 .contact-form .form-control::placeholder,
.getticket-form-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.getticket-form-2 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.getticket-form-2 .contact-form .btn i {
  font-size: 1.25rem;
}

.getticket-form-2 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Cbox1 Footer Section
--------------------------------------------------------------*/
.cbox1-footer {
  --background-color: #444444;
  --accent-color: #bcbcbc;
  padding: 12px 0;
}

.cbox1-footer .swiper {
  padding: 10px 0;
}

.cbox1-footer .swiper-wrapper {
  height: auto;
}

.cbox1-footer .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

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

/*--------------------------------------------------------------
# Clients 01 Section
--------------------------------------------------------------*/
.clients-01 {
  padding: 4px 0;
  background-color: #dfdfdf !important;
}

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

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

.clients-01 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
  max-height: 24px;
}

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

.clients-01 .mbz-img-t2s {
  max-height: 20px;
  height: 18px;
  filter: blur(1px);
}

@media (max-height: 600px) {
  .clients {
    display: none;
  }
}

/*--------------------------------------------------------------
# Call To Action 9 Section
--------------------------------------------------------------*/
.call-to-action-9 .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action-9 .content h2,
.call-to-action-9 .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-9 .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-9 .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action-9 .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-9 .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action-9 .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action-9 .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action-9 .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-9 .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action-9 .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action-9 .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action-9 .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-9 .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action-9 .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action-9 .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action-9 .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-9 .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action-9 .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-9 .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action-9 .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action-9 .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Call To Action 13 Section
--------------------------------------------------------------*/
.call-to-action-13 {
  position: relative;
  padding: 80px 0;
  background-color: var(--accent-color);
  overflow: hidden;
}

.call-to-action-13 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface-color);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .call-to-action-13 h2 {
    font-size: 2.25rem;
  }
}

.call-to-action-13 .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.call-to-action-13 .cta-buttons {
  position: relative;
  z-index: 1;
}

.call-to-action-13 .cta-buttons .btn {
  padding: 12px 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-to-action-13 .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.call-to-action-13 .cta-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

.call-to-action-13 .cta-buttons .btn-primary {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: none;
}

.call-to-action-13 .cta-buttons .btn-primary:hover {
  background-color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-13 .cta-buttons .btn-outline {
  border: 2px solid var(--surface-color);
  color: var(--surface-color);
  background: transparent;
}

.call-to-action-13 .cta-buttons .btn-outline:hover {
  color: var(--surface-color);
  transform: translateY(-2px);
}

.call-to-action-13 .stats {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.call-to-action-13 .stats .stat-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.call-to-action-13 .stats .stat-item:hover {
  transform: translateY(-5px);
}

.call-to-action-13 .stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--surface-color);
  margin-bottom: 0.5rem;
}

.call-to-action-13 .stats .stat-item p {
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .call-to-action-13 {
    padding: 60px 20px;
  }

  .call-to-action-13 .stats .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action-13 .stats .stat-item h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Subscribe 01 Section
--------------------------------------------------------------*/
.subscribe-01 .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .subscribe-01 .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .subscribe-01 .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.subscribe-01 .cta-content h7 {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.subscribe-01 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subscribe-01 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.subscribe-01 .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.subscribe-01 .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.subscribe-01 .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-01 .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .subscribe-01 .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .subscribe-01 .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .subscribe-01 .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Hero 8 Section
--------------------------------------------------------------*/
.hero-8 {
  padding-top: 120px;
  padding-bottom: 60px;
  /* border-color: yellow;     border-style: solid;  */
  width: 100%;
  min-height: 80vh;
  /* mjm calc(80vh - 30px) */
  /* 100% */
  /* 80vh */
  position: relative;
  display: flex;
  align-items: center;
  /* background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"); */
  background-size: cover;
  /* background-size: contain; */
  background-repeat: no-repeat;
  /* gradient -- sieht ohne keyframes auch nicht schlecht aus..   -45deg */
  /* background: linear-gradient(.25turn, #ee7752, #557aff, #0055a1 70.71%); */
  /* ohne anim. ok */
  /* LETZTE VERSION background: linear-gradient(45deg, #ee7752, #557aff, #0055a1 70.71%); */
  /* GEILER EFFEKT.. background: linear-gradient(45deg, #ee7752, #557aff,white 44%); */
  /* GEILER EFFEKT.. background: linear-gradient(45deg, #ee7752, gray 22%, white 22%, #1a5276 77%, #34495e 77%); */
  /* background: linear-gradient(45deg, #ee7752, white, #1a5276 22%,   #34495e  33%); */
  /*  #557aff #154360    */
  background: linear-gradient(45deg, #004c90 0%, #ee7752 15%, #1a5276 25%, #004c90 50%, #4668a2 75%, #34495e 100%);
  background-size: 80% 100%;
  animation: gradient 15s ease infinite;
  /* gradient */
  /* XXXXX
    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }
  */
  /* background-size: 72% auto; */
  /* background-size: auto; */
  /* object-fit: cover; */
  /* object-position: 90% 90%; */
}

.hero-8 .mbz-class-1 {
  background: #444444;
  border-color: #e77339;
  color: white;
}

.hero-8 .mbz-class-2 {
  font-size: 26px;
  letter-spacing: 1px;
  /* 1px */
  font-family: TypoldRegular, Verdana, sans-serif;
  font-weight: normal;
  color: var(--default-color);
}

.hero-8 .mbz-class-2 span {
  white-space: nowrap;
  font-family: Expan1, TypoldRegular, Verdana, sans-serif;
  font-weight: 900;
  /* normal; */
  color: var(--default-color);
}

.hero-8 .mbz-class-3 {
  font-size: 22px;
  letter-spacing: 0px;
  /* 1px; */
  /*
  font-family: TypoldExtraThin, Verdana, sans-serif;
  */
  font-family: TypoldRegular, Verdana, sans-serif;
  font-variant: normal;
  font-weight: lighter;
  /* lighter; */
  color: color-mix(in srgb, white 77%, black);
  margin: 0;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 32px;
}

.hero-8 .bgi1:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.hero-8 #vaplay1 {
  width: 100%;
  height: 360px;
  position: relative;
}

.hero-8 #videoMessage {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-8 .bgi1 {
  /* LETZTE VERSION: OHNE */
  /* opacity: 0.67125; */
  opacity: 0.63125;
}

.hero-8 .row {
  /* border-color: green;     border-style: solid; */
}

.hero-8 .mbrztab1 {
  padding-left: 20px;
}

.hero-8 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
}

.hero-8 .mbrzstamp1 {
  transform: rotate(-12deg);
  color: #e77339;
  /* font-size: 30px; */
  font-weight: 900;
  /* font-family: 'Montserrat'; */
  border: 0.25rem #e77339 solid;
  margin-left: 20px;
  display: inline-block;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  border-radius: 1rem;
  letter-spacing: 0.2em !important;
  /* -webkit-mask-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/8399/grunge.png'); */
  /* -webkit-mask-size: 944px 604px; */
  /* mix-blend-mode: multiply; */
}

.hero-8 h1 {
  margin: 0;
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  /* 56px; */
  color: #d7dbdd;
  /* #fbeee6 */
  /* #e5e7e9; */
}

.hero-8 h2 {
  /* text-transform: uppercase; */
  font-variant: small-caps;
  margin: 0;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #e77339;
}

.hero-8 h3 {
  /* text-transform: uppercase; */
  margin: 0;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #e77339;
}

.hero-8 h4 {
  color: #d7dbdd;
}

.hero-8 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-8 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 28px 4px 28px;
  border-radius: 5px;
  transition: 0.5s;
}

.hero-8 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%);
}

.hero-8 .btn-get-started-2 {
  color: var(--contrast-color);
  background: #5499c7;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 28px 4px 28px;
  /* padding: 10px 28px 12px 28px; */
  border-radius: 5px;
  transition: 0.5s;
}

.hero-8 .btn-get-started-2:hover {
  color: #34495e;
  background: color-mix(in srgb, #c0392b, transparent 15%);
}

.hero-8 .btn-get-started-3 {
  color: var(--contrast-color);
  background: #1abc9c;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 28px 4px 28px;
  border-radius: 5px;
  transition: 0.5s;
}

.hero-8 .btn-get-started-3:hover {
  color: #34495e;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

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

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

.hero-8 .xanimated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  filter: grayscale(80%) blur(1px);
  -webkit-filter: grayscale(80%) blur(1px);
  -webkit-filter: hue-rotate(22deg);
  filter: hue-rotate(22deg);
  -webkit-filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7));
  -webkit-filter: opacity(0.5);
  filter: opacity(0.5);
  -webkit-filter: hue-rotate(66deg);
  filter: hue-rotate(66deg);
  xfilter: grayscale(80%) blur(1px) drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7)) opacity(0.5);
  -xwebkit-filter: grayscale(80%) blur(1px);
}

.hero-8 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7)) opacity(0.5);
  -webkit-filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7)) opacity(0.5);
}

.hero-8 .bgi1animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  filter: brightness(0.78) grayscale(20%);
  /* -webkit-filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.7)) opacity(0.5); */
  -webkit-filter: brightness(0.78) grayscale(20%);
}

.hero-8 .overlay {
  border-top: 8px solid white;
  border-bottom: 8px solid white;
  transition: background 1s;
  background: hsla(350, 50%, 80%, 0.5);
  margin: 0;
  padding: 1em;
}

.hero-8 .over {
  background: hsla(350, 50%, 50%, 0.9);
}

.hero-8 .overlay p {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hero-8 h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

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

  .hero-8 .hero-img {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    /* border-color: red; border-style: solid; */
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 30px;
  }
}

@media (max-width: 950px) {
  .hero {
    padding-top: 30px;
  }
}

@media (max-height: 820px) and (min-height: 501px),
(max-width: 890px) {
  .hero {
    padding-top: 30px;
  }

  .hero .hero-img {
    /* max-height: 5vh; */
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero #videoDiv {
    /* border-color: green; border-style: solid; */
    /* width: 60%; */
  }
}

@media (max-width: 450px) and (max-height: 760px) {
  .hero #videoDiv {
    /* border-color: black; border-style: solid; */
    width: 85%;
  }
}

@media (max-width: 450px) and (max-height: 725px) {
  .hero #videoDiv {
    /* border-color: black; border-style: solid; */
    width: 75%;
  }

  .hero #videoMessage {
    display: none !important;
  }
}

@media (max-width: 450px) and (max-height: 645px) {

  .hero .img-fluid,
  .hero .overlay,
  .hero .over {
    display: none;
  }

  .hero #videoDiv {
    /* border-color: black; border-style: solid; */
    width: 100%;
  }

  #videoMessage {
    display: none !important;
  }
}

@media (max-width: 450px) and (max-height: 450px) {
  .hero #videoDiv {
    /* border-color: blue; border-style: solid; */
    width: 100%;
  }

  .hero #videoMessage {
    display: none !important;
  }
}

@media (max-width: 450px) and (max-height: 660px) {
  .hero .overlay {
    display: none;
  }
}

@media (max-height: 375px) {
  .hero {
    padding-top: 10%;
    /* 30px; */
  }

  .hero .hero-img {
    max-height: 10vh;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  #videoDiv {
    /* border-color: blue; border-style: none; */
    width: 95%;
  }

  .hero .img-fluid,
  .hero .animated,
  .hero .overlay,
  .hero .over {
    display: none;
  }

  #videoMessage {
    display: none !important;
  }
}

.hero #videoMessage {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

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

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

.scrolled .mbz-class-1 {
  /* rgba(0, 76, 144, 0.9) ; */
  background: color-mix(in srgb, var(--background-color), transparent 45%);
  color: #e77339;
}

.scrolled .mbz-class-2-s {
  /* font-family:TypoldExtraThin,Verdana,sans-serif; font-weight:lighter; */
  /* 
  font-family: TypoldThin, Verdana, sans-serif; 
  font-weight: lighter;
  */
  color: color-mix(in srgb, white 77%, black);
}

.scrolled .mbz-class-2-y-hero span::after {
  content: " ✓";
  /* content: "\2009\2755 \21a9 \2936 \2940 \2713 \2714"; */
}

.scrolled .mbz-class-2 span::before {
  /* content: '\00a0 '; */
}

.scrolled .mbz-class-3 {
  font-family: TypoldRegular, Verdana, sans-serif;
  font-weight: normal;
  color: var(--default-color);
}

.scrolled .xmbz-class-3:after {
  content: ".!";
}

#bgi1img {
  /* verzerrt, geht so.. */
  background-size: cover;
  background-position: center;
  height: 80%;
  /*
  position: relative;
  z-index:0 !important;
  */
}

/*--------------------------------------------------------------
# Clients2 3 Section
--------------------------------------------------------------*/
.clients2-3 {
  padding: 4px 0;
  /* 12px 0; */
  /* background-color:  color-mix(in srgb, var(--accent-color), transparent 35%); */
  /* var(--background-color); */
  background-color: color-mix(in srgb, #977339, transparent 85%);
  /* var(--background-color); */
}

.clients2-3 .swiper {
  padding: 10px 0;
}

.clients2-3 .swiper-wrapper {
  height: auto;
}

.clients2-3 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
  max-height: 24px;
  /*mjm*/
}

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

.clients2-3 .mbz-img-t2s {
  max-height: 20px;
  height: 18px;
  filter: blur(1px);
}

@media (max-height: 600px) {
  .clients {
    display: none;
  }
}

/*--------------------------------------------------------------
# Cbox1 7 Section
--------------------------------------------------------------*/
.cbox1-7 {
  --background-color: #444444;
  --accent-color: #444444;
  padding: 12px 0;
}

.cbox1-7 .swiper {
  padding: 10px 0;
}

.cbox1-7 .swiper-wrapper {
  height: auto;
}

.cbox1-7 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

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

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 {
  --accent-color: #bcbcbc;
}

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

.about-5 ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

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

.about-5 .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}

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

.about-5 .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-5 .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Why Encrypt 4 Section
--------------------------------------------------------------*/
.why-encrypt-4 {
  --background-color: rgba(188, 188, 188, 0.08);
  padding: 30px 0;
}

.why-encrypt-4 .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-encrypt-4 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-encrypt-4 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.why-encrypt-4 .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-encrypt-4 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

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

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

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

.why-encrypt-4 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.why-encrypt-4 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

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

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

.why-encrypt-4 .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-encrypt-4 .why-us-img img {
  max-height: 80%;
  /* 70%; */
}

/*--------------------------------------------------------------
# Skills 7 Section
--------------------------------------------------------------*/
.skills-7 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.skills-7 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills-7 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

.skills-7 .content ul li {
  padding-bottom: 10px;
}

.skills-7 .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# Maibriz 6 Section
--------------------------------------------------------------*/
.maibriz-6 .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.maibriz-6 .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.maibriz-6 .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.maibriz-6 .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.maibriz-6 .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.maibriz-6 .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.maibriz-6 .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.maibriz-6 .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.maibriz-6 .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.maibriz-6 .service-card .read-more:hover i {
  transform: translateX(5px);
}

.maibriz-6 #zitate1 {
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Services 6 Section
--------------------------------------------------------------*/
.services-6 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

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

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

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

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

.services-6 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-6 .service-item:hover {
  transform: translateY(-10px);
}

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

/*--------------------------------------------------------------
# Servicesundefined 19 Section
--------------------------------------------------------------*/
.servicesundefined-19 .service-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.servicesundefined-19 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 20%), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.servicesundefined-19 .service-card .service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.servicesundefined-19 .service-card .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  line-height: 0;
  transition: all 0.4s ease;
}

.servicesundefined-19 .service-card .service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.servicesundefined-19 .service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.servicesundefined-19 .service-card .service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servicesundefined-19 .service-card .service-hover .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.servicesundefined-19 .service-card .service-hover .service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 15px;
}

.servicesundefined-19 .service-card .service-hover .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.servicesundefined-19 .service-card .service-hover .service-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.servicesundefined-19 .service-card .service-hover .service-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateX(5px);
}

.servicesundefined-19 .service-card:hover {
  transform: translateY(-5px);
}

.servicesundefined-19 .service-card:hover::before {
  transform: scaleX(1);
}

.servicesundefined-19 .service-card:hover .service-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-color);
}

.servicesundefined-19 .service-card:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.servicesundefined-19 .service-card:hover .service-hover {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Work Process 6 Section
--------------------------------------------------------------*/
.work-process-6 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.work-process-6 .steps-item {
  background: var(--surface-color);
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process-6 .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.work-process-6 .steps-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process-6 .steps-item:hover .steps-number {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.work-process-6 .steps-item:hover .steps-image img {
  transform: scale(1.1);
}

.work-process-6 .steps-image {
  position: relative;
  height: 280px;
}

.work-process-6 .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-process-6 .steps-content {
  position: relative;
  padding: 40px 30px 30px;
}

.work-process-6 .steps-content .steps-number {
  position: absolute;
  left: 30px;
  top: -30px;
  width: 40px;
  /* 60px */
  height: 40px;
  /* 60 px */
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 20%;
  /* 50% := circle.. */
  font-family: var(--heading-font);
  font-size: 18px;
  /* 24px */
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.work-process-6 .steps-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.work-process-6 .steps-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.work-process-6 .steps-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.work-process-6 .steps-features .feature-item:last-child {
  margin-bottom: 0;
}

.work-process-6 .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.work-process-6 .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
  .work-process-6 .steps-image {
    height: 240px;
  }

  .work-process-6 .steps-content {
    padding: 35px 25px 25px;
  }

  .work-process-6 .steps-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .work-process-6 .steps-item {
    margin-bottom: 30px;
  }

  .work-process-6 .steps-image {
    height: 220px;
  }

  .work-process-6 .steps-content {
    padding: 30px 20px 20px;
  }

  .work-process-6 .steps-content .steps-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 25px;
    top: -25px;
  }

  .work-process-6 .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .work-process-6 .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team 6 Section
--------------------------------------------------------------*/
.team-6 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team-6 .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team-6 .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-6 .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team-6 .team-member:hover {
  transform: translateY(-10px);
}

.team-6 .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team-6 .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team-6 .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-6 .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

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

@media (max-width: 468px) {
  .team-6 .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team-6 .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team-6 .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team-6 .team-member .social {
    justify-content: center;
  }
}

.team-6 .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team-6 .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

.team-6 .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team-6 .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Call To Actionundefined 7 Section
--------------------------------------------------------------*/
.call-to-actionundefined-7 {
  position: relative;
  padding: 80px 0;
  background-color: var(--accent-color);
  overflow: hidden;
}

.call-to-actionundefined-7 h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--surface-color);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .call-to-actionundefined-7 h2 {
    font-size: 2.25rem;
  }
}

.call-to-actionundefined-7 .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.call-to-actionundefined-7 .cta-buttons {
  position: relative;
  z-index: 1;
}

.call-to-actionundefined-7 .cta-buttons .btn {
  padding: 12px 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-to-actionundefined-7 .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.call-to-actionundefined-7 .cta-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

.call-to-actionundefined-7 .cta-buttons .btn-primary {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: none;
}

.call-to-actionundefined-7 .cta-buttons .btn-primary:hover {
  background-color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-actionundefined-7 .cta-buttons .btn-outline {
  border: 2px solid var(--surface-color);
  color: var(--surface-color);
  background: transparent;
}

.call-to-actionundefined-7 .cta-buttons .btn-outline:hover {
  color: var(--surface-color);
  transform: translateY(-2px);
}

.call-to-actionundefined-7 .stats {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.call-to-actionundefined-7 .stats .stat-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.call-to-actionundefined-7 .stats .stat-item:hover {
  transform: translateY(-5px);
}

.call-to-actionundefined-7 .stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--surface-color);
  margin-bottom: 0.5rem;
}

.call-to-actionundefined-7 .stats .stat-item p {
  color: color-mix(in srgb, var(--surface-color), transparent 15%);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .call-to-actionundefined-7 {
    padding: 60px 20px;
  }

  .call-to-actionundefined-7 .stats .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-actionundefined-7 .stats .stat-item h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Subscribe 6 Section
--------------------------------------------------------------*/
.subscribe-6 .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .subscribe-6 .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .subscribe-6 .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.subscribe-6 .cta-content h7 {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.subscribe-6 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subscribe-6 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.subscribe-6 .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.subscribe-6 .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.subscribe-6 .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-6 .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .subscribe-6 .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .subscribe-6 .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .subscribe-6 .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

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

/*--------------------------------------------------------------
# Zitate1sec Section
--------------------------------------------------------------*/
.zitate1sec {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

.services .service-card:hover .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.services .service-card:hover h3,
.services .service-card:hover p {
  color: var(--contrast-color);
}

.services .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.services .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.services .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.services .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.services .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 0.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.services .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.services .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.services .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.services .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.services .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.services .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.services .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services Cta 1 Section
--------------------------------------------------------------*/
.services-cta-1 {
  --background-color: #f1c232;
  position: relative;
  clip-path: inset(0);
  position: relative;
  overflow: hidden;
}

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

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

.services-cta-1 .container {
  position: relative;
  z-index: 3;
}

.services-cta-1 xxx-h3 {
  /* color: var(--default-color); */
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.services-cta-1 p {
  color: var(--default-color);
}

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

.services-cta-1 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.services-cta-1 strong {
  color: #e77339;
}

.services-cta-1 .content-header {
}

.services-cta-1 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.services-cta-1 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.services-cta-1 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services-cta-1 .content-header h2 {
    font-size: 2.5rem;
  }
}

.services-cta-1 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-cta-1 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.services-cta-1 .service-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.services-cta-1 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-cta-1 .service-card:hover .service-overlay {
  opacity: 1;
}

.services-cta-1 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services-cta-1 .service-card:hover h3.blue {
  color: #3b82f6;
}

.services-cta-1 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.services-cta-1 .service-card:hover h3.emerald {
  color: #10b981;
}

.services-cta-1 .service-card:hover h3.orange {
  color: #f97316;
}

.services-cta-1 .service-card:hover h3.indigo {
  color: #6366f1;
}

.services-cta-1 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.services-cta-1 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services-cta-1 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services-cta-1 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.services-cta-1 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.services-cta-1 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.services-cta-1 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.services-cta-1 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.services-cta-1 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.services-cta-1 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.services-cta-1 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.services-cta-1 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-cta-1 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.services-cta-1 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.services-cta-1 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.services-cta-1 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-1 .service-card .service-link.purple {
  color: #8b5cf6;
}

.services-cta-1 .service-card .service-link.emerald {
  color: #10b981;
}

.services-cta-1 .service-card .service-link.orange {
  color: #f97316;
}

.services-cta-1 .service-card .service-link.indigo {
  color: #6366f1;
}

.services-cta-1 .service-card .service-link.cyan {
  color: #06b6d4;
}

.services-cta-1 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.services-cta-1 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services-cta-1 .cta-section {
}

.services-cta-1 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .services-cta-1 .cta-section .cta-card {
    padding: 2rem;
  }
}

.services-cta-1 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services-cta-1 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.services-cta-1 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-1 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .services-cta-1 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.services-cta-1 .cta-section .cta-card .btn-primary,
.services-cta-1 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-1 .cta-section .cta-card .btn-primary i,
.services-cta-1 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.services-cta-1 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.services-cta-1 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.services-cta-1 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.services-cta-1 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Services Details 1 Section
--------------------------------------------------------------*/
.services-details-1 {
  padding-top: 60px;
  padding-bottom: 59px;
}

.services-details-1 .service-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-details-1 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 20%), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services-details-1 .service-card .service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.services-details-1 .service-card .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  line-height: 0;
  transition: all 0.4s ease;
}

.services-details-1 .service-card .service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services-details-1 .service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.services-details-1 .service-card .service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-details-1 .service-card .service-hover .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-details-1 .service-card .service-hover .service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 15px;
}

.services-details-1 .service-card .service-hover .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.services-details-1 .service-card .service-hover .service-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-details-1 .service-card .service-hover .service-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateX(5px);
}

.services-details-1 .service-card:hover {
  transform: translateY(-5px);
}

.services-details-1 .service-card:hover::before {
  transform: scaleX(1);
}

.services-details-1 .service-card:hover .service-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-color);
}

.services-details-1 .service-card:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services-details-1 .service-card:hover .service-hover {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Data Security Section
--------------------------------------------------------------*/
.data-security {
  --background-color: rgba(255, 153, 102, 0.2);
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 0rem;
  margin-bottom: 0;
  background: #fafafa;
  background: linear-gradient(180deg, rgb(250, 250, 250) 30%, rgba(0, 0, 0, 0.63) 100%);
}

.data-security .section-title {
  padding-bottom: 0rem;
}

.data-security .content {
  padding-left: 20px;
  padding-right: 20px;
}

.data-security .mbz-bgc-0 {
  background-color: rgba(182, 192, 192, 0.1);
}

.data-security .mbz-bgc-0 h6 {
  color: rgba(0, 0, 0, 0.72);
}

.data-security .mbz-bgc-1 {
  background-color: #ebf5fb;
}

.data-security .mbz-bgc-2 {
  background-color: #fef5e7;
}

.data-security .content-header {
  margin-bottom: 5rem;
}

.data-security .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.data-security .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.data-security .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security .content-header h2 {
    font-size: 2.5rem;
  }
}

.data-security .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.data-security .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.data-security .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.data-security .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.data-security .service-card:hover .service-overlay {
  opacity: 1;
}

.data-security .service-card:hover .service-icon {
  transform: scale(1.1);
}

.data-security .service-card:hover h3.blue {
  color: #3b82f6;
}

.data-security .service-card:hover h3.purple {
  color: #8b5cf6;
}

.data-security .service-card:hover h3.emerald {
  color: #10b981;
}

.data-security .service-card:hover h3.orange {
  color: #f97316;
}

.data-security .service-card:hover h3.indigo {
  color: #6366f1;
}

.data-security .service-card:hover h3.cyan {
  color: #06b6d4;
}

.data-security .service-card .service-content {
  position: relative;
  z-index: 2;
}

.data-security .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.data-security .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.data-security .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.data-security .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.data-security .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.data-security .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.data-security .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.data-security .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.data-security .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.data-security .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.data-security .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.data-security .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.data-security .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.data-security .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security .service-card .service-link.purple {
  color: #8b5cf6;
}

.data-security .service-card .service-link.emerald {
  color: #10b981;
}

.data-security .service-card .service-link.orange {
  color: #f97316;
}

.data-security .service-card .service-link.indigo {
  color: #6366f1;
}

.data-security .service-card .service-link.cyan {
  color: #06b6d4;
}

.data-security .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.data-security .service-card .service-link:hover i {
  transform: translateX(4px);
}

.data-security .cta-section {
  margin-top: 2rem;
}

.data-security .cta-section .cta-card {
  border-radius: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.4rem;
  padding-top: 0.8rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .data-security .cta-section .cta-card {
    padding: 2rem;
  }
}

.data-security .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.data-security .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.data-security .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .data-security .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.data-security .cta-section .cta-card .btn-primary,
.data-security .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security .cta-section .cta-card .btn-primary i,
.data-security .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.data-security .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.data-security .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.data-security .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.data-security .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# Data Security 2 Section
--------------------------------------------------------------*/
.data-security-2 {
  --background-color: rgba(255, 153, 102, 0.2);
  position: relative;
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fafafa;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.63) 5%, rgb(250, 250, 250) 20%, rgba(255, 153, 102, 0.2) 50%);
}

.data-security-2 .section-title {
  padding-bottom: 2rem;
}

.data-security-2 .content {
  padding-left: 20px;
  padding-right: 20px;
}

.data-security-2 .content-header {
  margin-bottom: 5rem;
}

.data-security-2 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.data-security-2 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.data-security-2 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security-2 .content-header h2 {
    font-size: 2.5rem;
  }
}

.data-security-2 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.data-security-2 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.data-security-2 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.data-security-2 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.data-security-2 .service-card:hover .service-overlay {
  opacity: 1;
}

.data-security-2 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.data-security-2 .service-card:hover h3.blue {
  color: #3b82f6;
}

.data-security-2 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.data-security-2 .service-card:hover h3.emerald {
  color: #10b981;
}

.data-security-2 .service-card:hover h3.orange {
  color: #f97316;
}

.data-security-2 .service-card:hover h3.indigo {
  color: #6366f1;
}

.data-security-2 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.data-security-2 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.data-security-2 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.data-security-2 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.data-security-2 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.data-security-2 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.data-security-2 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.data-security-2 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.data-security-2 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.data-security-2 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.data-security-2 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.data-security-2 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.data-security-2 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.data-security-2 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.data-security-2 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.data-security-2 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security-2 .service-card .service-link.purple {
  color: #8b5cf6;
}

.data-security-2 .service-card .service-link.emerald {
  color: #10b981;
}

.data-security-2 .service-card .service-link.orange {
  color: #f97316;
}

.data-security-2 .service-card .service-link.indigo {
  color: #6366f1;
}

.data-security-2 .service-card .service-link.cyan {
  color: #06b6d4;
}

.data-security-2 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.data-security-2 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.data-security-2 .cta-section {
  margin-top: 4rem;
}

.data-security-2 .cta-section .cta-card {
  background-color: #fef5e7;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .data-security-2 .cta-section .cta-card {
    padding: 2rem;
  }
}

.data-security-2 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security-2 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.data-security-2 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.data-security-2 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .data-security-2 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.data-security-2 .cta-section .cta-card .btn-primary,
.data-security-2 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security-2 .cta-section .cta-card .btn-primary i,
.data-security-2 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.data-security-2 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.data-security-2 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.data-security-2 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.data-security-2 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# Data Security 3 Section
--------------------------------------------------------------*/
.data-security-3 {
  --background-color: rgba(188, 188, 188, 0.08);
  padding: 30px 0;
}

.data-security-3 .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.data-security-3 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.data-security-3 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.data-security-3 .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.data-security-3 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

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

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

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

.data-security-3 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.data-security-3 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

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

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

.data-security-3 .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-security-3 .why-us-img img {
  max-height: 80%;
}

/*--------------------------------------------------------------
# Data Security 4 Section
--------------------------------------------------------------*/
.data-security-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.data-security-4 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.data-security-4 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.data-security-4 .content p:last-child {
  margin-bottom: 0;
}

.data-security-4 .content ul {
  list-style: none;
  padding: 0;
}

.data-security-4 .content ul li {
  padding-bottom: 10px;
}

.data-security-4 .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

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

.data-security-4 .progress .skill .val {
  float: right;
  font-style: normal;
}

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

.data-security-4 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Data Security 5 Section
--------------------------------------------------------------*/
.data-security-5 {
  --background-color: rgba(188, 188, 188, 0.08);
}

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

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

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

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

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

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

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

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

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

.data-security-5 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Data Security 6 Section
--------------------------------------------------------------*/
.data-security-6 {
  --background-color: rgba(255, 153, 102, 0.2);
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.data-security-6 .section-title {
  padding-bottom: 2rem;
}

.data-security-6 .content {
  padding-left: 20px;
  padding-right: 20px;
}

.data-security-6 .content-header {
  margin-bottom: 5rem;
}

.data-security-6 .content-header .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: color-mix(in srgb, #3b82f6, white 85%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.data-security-6 .content-header .header-icon i {
  font-size: 2rem;
  color: #3b82f6;
}

.data-security-6 .content-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security-6 .content-header h2 {
    font-size: 2.5rem;
  }
}

.data-security-6 .content-header h2 .gradient-text {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.data-security-6 .content-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.data-security-6 .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.5s ease;
  overflow: hidden;
}

.data-security-6 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.data-security-6 .service-card:hover .service-overlay {
  opacity: 1;
}

.data-security-6 .service-card:hover .service-icon {
  transform: scale(1.1);
}

.data-security-6 .service-card:hover h3.blue {
  color: #3b82f6;
}

.data-security-6 .service-card:hover h3.purple {
  color: #8b5cf6;
}

.data-security-6 .service-card:hover h3.emerald {
  color: #10b981;
}

.data-security-6 .service-card:hover h3.orange {
  color: #f97316;
}

.data-security-6 .service-card:hover h3.indigo {
  color: #6366f1;
}

.data-security-6 .service-card:hover h3.cyan {
  color: #06b6d4;
}

.data-security-6 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.data-security-6 .service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.data-security-6 .service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.data-security-6 .service-card .service-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.data-security-6 .service-card .service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.data-security-6 .service-card .service-icon.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.data-security-6 .service-card .service-icon.orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.data-security-6 .service-card .service-icon.indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.data-security-6 .service-card .service-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.data-security-6 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.data-security-6 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.data-security-6 .service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.data-security-6 .service-card .features-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.data-security-6 .service-card .features-list li i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.data-security-6 .service-card .service-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security-6 .service-card .service-link.purple {
  color: #8b5cf6;
}

.data-security-6 .service-card .service-link.emerald {
  color: #10b981;
}

.data-security-6 .service-card .service-link.orange {
  color: #f97316;
}

.data-security-6 .service-card .service-link.indigo {
  color: #6366f1;
}

.data-security-6 .service-card .service-link.cyan {
  color: #06b6d4;
}

.data-security-6 .service-card .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.data-security-6 .service-card .service-link:hover i {
  transform: translateX(4px);
}

.data-security-6 .cta-section {
  margin-top: 4rem;
}

.data-security-6 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .data-security-6 .cta-section .cta-card {
    padding: 2rem;
  }
}

.data-security-6 .cta-section .cta-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .data-security-6 .cta-section .cta-card h3 {
    font-size: 1.75rem;
  }
}

.data-security-6 .cta-section .cta-card p {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.data-security-6 .cta-section .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .data-security-6 .cta-section .cta-card .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.data-security-6 .cta-section .cta-card .btn-primary,
.data-security-6 .cta-section .cta-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.data-security-6 .cta-section .cta-card .btn-primary i,
.data-security-6 .cta-section .cta-card .btn-secondary i {
  margin-left: 0.5rem;
}

.data-security-6 .cta-section .cta-card .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.data-security-6 .cta-section .cta-card .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  color: white;
}

.data-security-6 .cta-section .cta-card .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.data-security-6 .cta-section .cta-card .btn-secondary:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: scale(1.05);
  color: var(--default-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(50%);
  }

  50% {
    transform: translateY(-50%);
  }
}

/*--------------------------------------------------------------
# It Security Section
--------------------------------------------------------------*/
.it-security {
  background: color-mix(in srgb, var(--my-bg-03), transparent 66%);
  background: linear-gradient(-280deg, rgb(250, 250, 250) 0%, rgba(207, 226, 243, 0.47) 72%);
  margin: 0;
  padding-bottom: 0;
}

.it-security h2 {
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #5b5b5b;
}

.it-security h2:after {
  display: none !important;
}

.it-security h2:before {
  display: none !important;
}

.it-security .section-title {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.it-security ul {
  list-style: none;
  padding: 0;
}

.it-security ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

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

.it-security .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.it-security .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.it-security .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# It Security 3 Section
--------------------------------------------------------------*/
.it-security-3 {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.it-security-3 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.it-security-3 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.it-security-3 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.it-security-3 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.it-security-3 .features .feature-item:hover {
  transform: translateY(-2px);
}

.it-security-3 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.it-security-3 .features .feature-item span {
  font-weight: 500;
}

.it-security-3 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.it-security-3 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.it-security-3 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.it-security-3 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.it-security-3 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.it-security-3 .img-container {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  background-image: linear-gradient(to right, black 0%, white 100%);
  background-image: linear-gradient(to right, blue 0%, yellow 100%), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  background-repeat: no-repeat;
  background-blend-mode: difference, color-dodge;
}

.it-security-3 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.it-security-3 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 44%;
}

.it-security-3 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.it-security-3 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-security-3 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.it-security-3 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.it-security-3 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.it-security-3 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.it-security-3 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.it-security-3 .decoration .circle-1,
.it-security-3 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.it-security-3 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.it-security-3 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .it-security-3 {
    padding: 2rem;
  }

  .it-security-3 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .it-security-3 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  --background-color: rgba(217, 234, 211, 0.925);
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(217, 234, 211, 0.925);
  background: linear-gradient(180deg, rgb(217, 234, 211) 0%, rgb(250, 250, 250) 67%);
}

.steps .steps-5 {
  background-color: rgba(217, 234, 211, 0.925);
}

.steps .maibriz {
  color: #e77339 !important;
  font-weight: 400;
}

.steps .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.8rem;
}

.steps .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  margin-left: 0.8rem;
  color: var(--heading-color);
}

.steps .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.steps .feature-list li:last-child {
  margin-bottom: 0;
}

.steps .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.steps .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.steps .process-item:last-child {
  padding-bottom: 0;
}

.steps .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.steps .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.steps .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.steps .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.steps .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.steps .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.steps .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.steps .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .steps .process-container {
    padding: 1rem 0;
  }

  .steps .process-item {
    padding-bottom: 2rem;
  }

  .steps .process-item .content {
    border-width: 1px;
  }

  .steps .process-item .content:hover {
    transform: translateY(-5px);
  }

  .steps .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .steps .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .steps .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .steps .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .steps .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .steps .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .steps .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}

/*--------------------------------------------------------------
# It Security 2 Section
--------------------------------------------------------------*/
.it-security-2 .mbrzsmaller {
  color: var(--heading-color);
  font-size: smaller;
  padding: 20px;
  padding-top: 15px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.it-security-2 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.8rem;
}

.it-security-2 .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  margin-left: 0.8rem;
  color: var(--heading-color);
}

.it-security-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.it-security-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.it-security-2 .feature-card,
.it-security-2 .compliance-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.it-security-2 .feature-card:hover,
.it-security-2 .compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

.it-security-2 .feature-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.it-security-2 .feature-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.it-security-2 .feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.it-security-2 .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.it-security-2 .feature-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.it-security-2 .feature-card .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
}

.it-security-2 .feature-card .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.it-security-2 .feature-card .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.it-security-2 .feature-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.it-security-2 .feature-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.it-security-2 .feature-card .read-more:hover i {
  transform: translateX(5px);
}

.it-security-2 .compliance-card {
  text-align: center;
  padding: 25px 20px;
}

.it-security-2 .compliance-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.it-security-2 .compliance-card .status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.it-security-2 .compliance-card .status.in-progress {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.it-security-2 .compliance-card .status.compliant {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.it-security-2 .compliance-card .status.planned {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.it-security-2 .compliance-card .status.maibriz {
  background-color: rgba(231, 115, 57, 0.1);
  color: #e77339;
}

@media (max-width: 992px) {
  .it-security-2 .feature-card {
    margin-bottom: 20px;
  }

  .it-security-2 .compliance-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .it-security-2 .feature-card .icon-box {
    width: 50px;
    height: 50px;
  }

  .it-security-2 .feature-card .icon-box i {
    font-size: 24px;
  }

  .it-security-2 .feature-card h3 {
    font-size: 20px;
  }

  .it-security-2 .compliance-card h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# It Security 4 Section
--------------------------------------------------------------*/
.it-security-4 {
  padding-top: 120px;
  position: relative;
  clip-path: inset(0);
  padding-bottom: 120px;
}

.it-security-4 .btn-secondary {
  background-color: white;
  color: #aa0;
  border: 2px solid #aa0;
}

.it-security-4 .btn-secondary:hover {
  background: color-mix(in srgb, #eee, transparent 15%);
  transform: scale(1.05);
}

.it-security-4 .mbz-underlinex {
  color: white;
}

.it-security-4 .mbz-underlinex span {
  color: #aa0;
}

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

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

.it-security-4 .container {
  position: relative;
  z-index: 3;
}

.it-security-4 h3 {
  color: #aa0;
  font-size: 28px;
  font-weight: 700;
}

.it-security-4 p {
  color: var(--default-color);
}

.it-security-4 p span {
  color: #aa0;
}

.it-security-4 p a {
  color: white;
  text-decoration: underline !important;
}

.it-security-4 p a:hover {
  text-decoration-color: #aa0 !important;
}

.it-security-4 p a span {
  color: white;
}

.it-security-4 .cta-btn-container {
  color: #aa0 !important;
}

.it-security-4 .cta-btn {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  border: 2px solid #aa0;
  border-radius: 1rem;
  color: #aa0 !important;
}

.it-security-4 .cta-btn a,
.it-security-4 .cta-btn a:link {
  color: #aa0 !important;
}

.it-security-4 .cta-btn:hover {
  background: #CEE1F5;
}

.it-security-4 strong {
  color: #e77339;
}

/*--------------------------------------------------------------
# Clients2undefined 2 Section
--------------------------------------------------------------*/
.clients2undefined-2 {
  padding: 4px 0;
  /* 12px 0; */
  /* background-color:  color-mix(in srgb, var(--accent-color), transparent 35%); */
  /* var(--background-color); */
  background-color: color-mix(in srgb, #977339, transparent 85%);
  /* var(--background-color); */
}

.clients2undefined-2 .swiper {
  padding: 10px 0;
}

.clients2undefined-2 .swiper-wrapper {
  height: auto;
}

.clients2undefined-2 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
  max-height: 24px;
  /*mjm*/
}

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

.clients2undefined-2 .mbz-img-t2s {
  max-height: 20px;
  height: 18px;
  filter: blur(1px);
}

@media (max-height: 600px) {
  .clients {
    display: none;
  }
}

/*--------------------------------------------------------------
# Cbox1undefinedundefined 2 Section
--------------------------------------------------------------*/
.cbox1undefinedundefined-2 {
  --background-color: #444444;
  --accent-color: #444444;
  padding: 12px 0;
}

.cbox1undefinedundefined-2 .swiper {
  padding: 10px 0;
}

.cbox1undefinedundefined-2 .swiper-wrapper {
  height: auto;
}

.cbox1undefinedundefined-2 .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

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

/*--------------------------------------------------------------
# Services 04 Section
--------------------------------------------------------------*/
.services-04 .service-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-04 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 20%), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services-04 .service-card .service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.services-04 .service-card .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  line-height: 0;
  transition: all 0.4s ease;
}

.services-04 .service-card .service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services-04 .service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.services-04 .service-card .service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-04 .service-card .service-hover .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services-04 .service-card .service-hover .service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 15px;
}

.services-04 .service-card .service-hover .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.services-04 .service-card .service-hover .service-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-04 .service-card .service-hover .service-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateX(5px);
}

.services-04 .service-card:hover {
  transform: translateY(-5px);
}

.services-04 .service-card:hover::before {
  transform: scaleX(1);
}

.services-04 .service-card:hover .service-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-color);
}

.services-04 .service-card:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services-04 .service-card:hover .service-hover {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Software 1 Section
--------------------------------------------------------------*/
.software-1 {
  --background-color: rgba(217, 234, 211, 0.585);
  background: #fafafa;
  background: linear-gradient(180deg, rgb(250, 250, 250) 0%, rgb(217, 234, 211) 42%);
}

.software-1 .section-title h2 span {
  white-space: nowrap;
}

.software-1 .mbz-tab-1 {
  padding-left: 6px;
}

.software-1 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-1 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.software-1 .features-card:last-child {
  margin-bottom: 0;
}

.software-1 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.software-1 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.software-1 .feature-image:hover img {
  transform: scale(1.05);
}

.software-1 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.software-1 .feature-image .overlay-icon i {
  font-size: 24px;
}

.software-1 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.software-1 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .software-1 .feature-content .content-inner {
    padding: 2rem;
  }
}

.software-1 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.software-1 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .software-1 h3 {
    font-size: 24px;
  }
}

.software-1 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.software-1 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.software-1 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.software-1 .feature-list li:last-child {
  margin-bottom: 0;
}

.software-1 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.software-1 .feature-action {
  margin-top: 1.5rem;
}

.software-1 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.software-1 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.software-1 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.software-1 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .software-1 .feature-image,
  .software-1 .feature-content {
    height: auto;
  }

  .software-1 .feature-content .content-inner {
    padding: 2rem;
  }

  .software-1 h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Software 2 Section
--------------------------------------------------------------*/
.software-2 .section-title h2 span {
  white-space: nowrap;
}

.software-2 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.software-2 .service-item .icon {
  margin-bottom: 10px;
}

.software-2 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

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

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

.software-2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.software-2 .service-item:hover {
  transform: translateY(-10px);
}

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

/*--------------------------------------------------------------
# It Grundschutz 1 Section
--------------------------------------------------------------*/
.it-grundschutz-1 {
  --background-color: rgba(217, 234, 211, 0.585);
  --my-green-01: rgba(217, 234, 211, 0.585);
  --my-golden-01: rgba(213, 181, 110, 0.8);
  background: #fafafa;
  background: linear-gradient(180deg, rgb(250, 250, 250) 0%, rgba(212, 172, 13, 0.28) 42%);
  padding: 2rem;
}

@media (max-width: 500px) {
  .it-grundschutz-1 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .it-grundschutz-1 .container {
    padding: 0;
  }
}

.it-grundschutz-1 .green-01 {
  background-color: var(--my-green-01);
}

.it-grundschutz-1 .golden-01 {
  background-color: var(--my-golden-01);
}

.it-grundschutz-1 h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 380px;
  height: 1px;
  background: #fafafa;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.it-grundschutz-1 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 280px;
  height: 3px;
  background: #fafafa;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.it-grundschutz-1 .section-title {
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

.it-grundschutz-1 p a {
  font-weight: bold;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-1 p a:hover {
  text-decoration: underline;
}

.it-grundschutz-1 .section-title {
  padding: 0;
}

.it-grundschutz-1 .section-title p i {
  font-weight: bolder;
  font-size: x-large;
  color: burlywood;
}

.it-grundschutz-1 .mbz-tab-1 {
  padding-left: 6px;
}

.it-grundschutz-1 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  /*2.5rem;*/
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-grundschutz-1 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.it-grundschutz-1 .features-card:last-child {
}

@media (max-width: 600px) {
  .it-grundschutz-1 .features-card {
    padding: 0;
  }
}

.it-grundschutz-1 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.it-grundschutz-1 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-grundschutz-1 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.it-grundschutz-1 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-grundschutz-1 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.it-grundschutz-1 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
  /*center;*/
  height: 100% !important;
  /*mm*/
}

.it-grundschutz-1 .feature-content .content-inner {
  padding-top: 3rem;
  padding-bottom: 1rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .it-grundschutz-1 .feature-content .content-inner {
    padding: 2rem;
  }
}

.it-grundschutz-1 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.it-grundschutz-1 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .it-grundschutz-1 h3 {
    font-size: 24px;
  }
}

.it-grundschutz-1 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.it-grundschutz-1 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.it-grundschutz-1 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-1 .feature-list li:last-child {
  margin-bottom: 0;
}

.it-grundschutz-1 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-1 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.it-grundschutz-1 .feature-list-ol li {
  font-weight: bold !important;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-1 .feature-list-ol li:last-child {
  margin-bottom: 0;
}

.it-grundschutz-1 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-1 .feature-action {
  margin-top: 1.5rem;
}

.it-grundschutz-1 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.it-grundschutz-1 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.it-grundschutz-1 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.it-grundschutz-1 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .it-grundschutz-1 .feature-image,
  .it-grundschutz-1 .feature-content {
    height: auto;
  }

  .it-grundschutz-1 .feature-content .content-inner {
    padding: 2rem;
  }

  .it-grundschutz-1 h3 {
    font-size: 22px;
  }

  .it-grundschutz-1 .feature-list,
  .it-grundschutz-1 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# It Grundschutz 2 Section
--------------------------------------------------------------*/
.it-grundschutz-2 {
  --background-color: rgba(217, 234, 211, 0.585);
  --my-green-01: rgba(217, 234, 211, 0.585);
  background: color-mix(in srgb, var(--my-bg-01), transparent 66%);
  padding-top: 2rem;
  padding-bottom: 1rem;
}

@media (max-width: 500px) {
  .it-grundschutz-2 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .it-grundschutz-2 .container {
    padding: 0;
  }
}

.it-grundschutz-2 .green-01 {
  background-color: var(--my-green-01);
}

.it-grundschutz-2 .section-title {
  padding: 0;
}

.it-grundschutz-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-2 li a:hover {
  text-decoration: underline;
}

.it-grundschutz-2 dl dd p {
  padding-left: 40px;
  padding-bottom: 6px;
}

@media (max-width: 400px) {
  .it-grundschutz-2 dl dd p {
    font-size: smaller;
  }
}

.it-grundschutz-2 .section-title p i {
  font-weight: bolder;
  font-size: x-large;
  color: burlywood;
}

.it-grundschutz-2 .mbz-tab-1 {
  padding-left: 6px;
}

.it-grundschutz-2 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-grundschutz-2 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.it-grundschutz-2 .features-card:last-child {
}

@media (max-width: 600px) {
  .it-grundschutz-2 .features-card {
    padding: 0;
  }
}

.it-grundschutz-2 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.it-grundschutz-2 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-grundschutz-2 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.it-grundschutz-2 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-grundschutz-2 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.it-grundschutz-2 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
}

.it-grundschutz-2 .feature-content .content-inner {
  padding-top: 3rem;
  padding-bottom: 1rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .it-grundschutz-2 .feature-content .content-inner {
    padding: 2rem;
  }
}

.it-grundschutz-2 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.it-grundschutz-2 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .it-grundschutz-2 h3 {
    font-size: 24px;
  }
}

.it-grundschutz-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.it-grundschutz-2 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.it-grundschutz-2 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.it-grundschutz-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-2 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}

.it-grundschutz-2 .feature-list-ol li {
  font-weight: bold !important;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-2 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-2 .feature-action {
  margin-top: 1.5rem;
}

.it-grundschutz-2 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.it-grundschutz-2 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.it-grundschutz-2 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.it-grundschutz-2 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .it-grundschutz-2 .feature-image,
  .it-grundschutz-2 .feature-content {
    height: auto;
  }

  .it-grundschutz-2 .feature-content .content-inner {
    padding: 2rem;
  }

  .it-grundschutz-2 h3 {
    font-size: 22px;
  }

  .it-grundschutz-2 .feature-list,
  .it-grundschutz-2 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# It Grundschutz 3 Section
--------------------------------------------------------------*/
.it-grundschutz-3 {
  --background-color: rgba(217, 234, 211, 0.585);
  --my-green-01: rgba(217, 234, 211, 0.585);
  background: color-mix(in srgb, var(--my-bg-01), transparent 66%);
  padding-top: 2rem;
  padding-bottom: 1rem;
}

@media (max-width: 500px) {
  .it-grundschutz-3 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .it-grundschutz-3 .container {
    padding: 0;
  }
}

.it-grundschutz-3 .green-01 {
  background-color: var(--my-green-01);
}

.it-grundschutz-3 .section-title {
  padding: 0;
}

.it-grundschutz-3 li a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-3 li a:hover {
  text-decoration: underline;
}

.it-grundschutz-3 dl dd p {
  padding-left: 40px;
  padding-bottom: 6px;
}

@media (max-width: 400px) {
  .it-grundschutz-3 dl dd p {
    font-size: smaller;
  }
}

.it-grundschutz-3 .section-title p i {
  font-weight: bolder;
  font-size: x-large;
  color: burlywood;
}

.it-grundschutz-3 .mbz-tab-1 {
  padding-left: 6px;
}

.it-grundschutz-3 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-grundschutz-3 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .it-grundschutz-3 .features-card {
    padding: 0;
  }
}

.it-grundschutz-3 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.it-grundschutz-3 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.it-grundschutz-3 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.it-grundschutz-3 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-grundschutz-3 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.it-grundschutz-3 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
}

.it-grundschutz-3 .feature-content .content-inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .it-grundschutz-3 .feature-content .content-inner {
    padding: 2rem;
  }
}

.it-grundschutz-3 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.it-grundschutz-3 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .it-grundschutz-3 h3 {
    font-size: 24px;
  }
}

.it-grundschutz-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.it-grundschutz-3 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.it-grundschutz-3 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-3 .feature-list li:last-child {
  margin-bottom: 0;
}

.it-grundschutz-3 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-3 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}

.it-grundschutz-3 .feature-list-ol li {
  font-weight: bold !important;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.it-grundschutz-3 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.it-grundschutz-3 .feature-action {
  margin-top: 1.5rem;
}

.it-grundschutz-3 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.it-grundschutz-3 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.it-grundschutz-3 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.it-grundschutz-3 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .it-grundschutz-3 .feature-image,
  .it-grundschutz-3 .feature-content {
    height: auto;
  }

  .it-grundschutz-3 .feature-content .content-inner {
    padding: 2rem;
  }

  .it-grundschutz-3 h3 {
    font-size: 22px;
  }

  .it-grundschutz-3 .feature-list,
  .it-grundschutz-3 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Softwareundefined 2 Section
--------------------------------------------------------------*/
.softwareundefined-2 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.softwareundefined-2 .service-item .icon {
  margin-bottom: 10px;
}

.softwareundefined-2 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

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

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

.softwareundefined-2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.softwareundefined-2 .service-item:hover {
  transform: translateY(-10px);
}

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

/*--------------------------------------------------------------
# Softwareundefined 6 Section
--------------------------------------------------------------*/
.softwareundefined-6 {
  --background-color: rgba(217, 234, 211, 0.585);
  background: #fafafa;
  background: linear-gradient(180deg, rgb(250, 250, 250) 0%, rgba(212, 172, 13, 0.28) 42%);
  padding: 2rem;
}

@media (max-width: 500px) {
  .softwareundefined-6 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .softwareundefined-6 .container {
    padding: 0;
  }
}

.softwareundefined-6 p a {
  font-weight: bold;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefined-6 p a:hover {
  text-decoration: underline;
}

.softwareundefined-6 .section-title {
  padding: 0;
}

.softwareundefined-6 .section-title p i {
  font-weight: bolder;
  font-size: x-large;
  color: burlywood;
}

.softwareundefined-6 .mbz-tab-1 {
  padding-left: 6px;
}

.softwareundefined-6 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  /*2.5rem;*/
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softwareundefined-6 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.softwareundefined-6 .features-card:last-child {
}

@media (max-width: 600px) {
  .softwareundefined-6 .features-card {
    padding: 0;
  }
}

.softwareundefined-6 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.softwareundefined-6 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.softwareundefined-6 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.softwareundefined-6 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.softwareundefined-6 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.softwareundefined-6 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
  /*center;*/
  height: 100% !important;
  /*mm*/
}

.softwareundefined-6 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .softwareundefined-6 .feature-content .content-inner {
    padding: 2rem;
  }
}

.softwareundefined-6 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.softwareundefined-6 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .softwareundefined-6 h3 {
    font-size: 24px;
  }
}

.softwareundefined-6 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.softwareundefined-6 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefined-6 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefined-6 .feature-list li:last-child {
  margin-bottom: 0;
}

.softwareundefined-6 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefined-6 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefined-6 .feature-list-ol li {
  font-weight: bold !important;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefined-6 .feature-list-ol li:last-child {
  margin-bottom: 0;
}

.softwareundefined-6 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefined-6 .feature-action {
  margin-top: 1.5rem;
}

.softwareundefined-6 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.softwareundefined-6 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.softwareundefined-6 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.softwareundefined-6 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .softwareundefined-6 .feature-image,
  .softwareundefined-6 .feature-content {
    height: auto;
  }

  .softwareundefined-6 .feature-content .content-inner {
    padding: 2rem;
  }

  .softwareundefined-6 h3 {
    font-size: 22px;
  }

  .softwareundefined-6 .feature-list,
  .softwareundefined-6 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Softwareundefinedundefined Section
--------------------------------------------------------------*/
.softwareundefinedundefined {
  --background-color: rgba(217, 234, 211, 0.585);
  background: color-mix(in srgb, var(--my-bg-01), transparent 66%);
  padding: 2rem;
}

@media (max-width: 500px) {
  .softwareundefinedundefined {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .softwareundefinedundefined .container {
    padding: 0;
  }
}

.softwareundefinedundefined .section-title {
  padding: 0;
}

.softwareundefinedundefined li a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined li a:hover {
  text-decoration: underline;
}

.softwareundefinedundefined dl dd p {
  padding-left: 40px;
  padding-bottom: 6px;
}

@media (max-width: 400px) {
  .softwareundefinedundefined dl dd p {
    font-size: smaller;
  }
}

.softwareundefinedundefined .section-title p i {
  font-weight: bolder;
  font-size: x-large;
  color: burlywood;
}

.softwareundefinedundefined .mbz-tab-1 {
  padding-left: 6px;
}

.softwareundefinedundefined .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  /*2.5rem;*/
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softwareundefinedundefined .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.softwareundefinedundefined .features-card:last-child {
}

@media (max-width: 600px) {
  .softwareundefinedundefined .features-card {
    padding: 0;
  }
}

.softwareundefinedundefined .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.softwareundefinedundefined .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.softwareundefinedundefined .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.softwareundefinedundefined .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.softwareundefinedundefined .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.softwareundefinedundefined .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
  /*center;*/
  /*mm*/
}

.softwareundefinedundefined .feature-content .content-inner {
  padding: 3rem;
  padding-bottom: 0;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .softwareundefinedundefined .feature-content .content-inner {
    padding: 2rem;
  }
}

.softwareundefinedundefined .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.softwareundefinedundefined h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .softwareundefinedundefined h3 {
    font-size: 24px;
  }
}

.softwareundefinedundefined p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.softwareundefinedundefined .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefinedundefined .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined .feature-list li:last-child {
  margin-bottom: 0;
}

.softwareundefinedundefined .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
}

.softwareundefinedundefined .feature-list-ol li {
  font-weight: bold !important;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined .feature-action {
  margin-top: 1.5rem;
}

.softwareundefinedundefined .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.softwareundefinedundefined .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.softwareundefinedundefined .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.softwareundefinedundefined .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .softwareundefinedundefined .feature-image,
  .softwareundefinedundefined .feature-content {
    height: auto;
  }

  .softwareundefinedundefined .feature-content .content-inner {
    padding: 2rem;
  }

  .softwareundefinedundefined h3 {
    font-size: 22px;
  }

  .softwareundefinedundefined .feature-list,
  .softwareundefinedundefined .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Softwareundefinedundefined 2 Section
--------------------------------------------------------------*/
.softwareundefinedundefined-2 {
  --background-color: rgba(217, 234, 211, 0.585);
}

@media (max-width: 500px) {
  .softwareundefinedundefined-2 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .softwareundefinedundefined-2 .container {
    padding: 0;
  }
}

.softwareundefinedundefined-2 dl dd p {
  padding-left: 40px;
  padding-bottom: 6px;
}

@media (max-width: 400px) {
  .softwareundefinedundefined-2 dl dd p {
    font-size: smaller;
  }
}

.softwareundefinedundefined-2 .mbz-tab-1 {
  padding-left: 6px;
}

.softwareundefinedundefined-2 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  /*2.5rem;*/
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softwareundefinedundefined-2 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.softwareundefinedundefined-2 .features-card:last-child {
}

@media (max-width: 600px) {
  .softwareundefinedundefined-2 .features-card {
    padding: 0;
  }
}

.softwareundefinedundefined-2 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.softwareundefinedundefined-2 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.softwareundefinedundefined-2 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.softwareundefinedundefined-2 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.softwareundefinedundefined-2 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.softwareundefinedundefined-2 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
  /*center;*/
  /*mm*/
}

.softwareundefinedundefined-2 .feature-content .content-inner {
  padding-bottom: 0;
  padding-top: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .softwareundefinedundefined-2 .feature-content .content-inner {
    padding: 2rem;
  }
}

.softwareundefinedundefined-2 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.softwareundefinedundefined-2 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .softwareundefinedundefined-2 h3 {
    font-size: 24px;
  }
}

.softwareundefinedundefined-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.softwareundefinedundefined-2 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefinedundefined-2 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.softwareundefinedundefined-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined-2 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefinedundefined-2 .feature-list-ol li {
  font-weight: bold !important;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined-2 .feature-list-ol li:last-child {
  margin-bottom: 0;
}

.softwareundefinedundefined-2 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined-2 .feature-action {
  margin-top: 1.5rem;
}

.softwareundefinedundefined-2 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.softwareundefinedundefined-2 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.softwareundefinedundefined-2 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.softwareundefinedundefined-2 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .softwareundefinedundefined-2 .feature-image,
  .softwareundefinedundefined-2 .feature-content {
    height: auto;
  }

  .softwareundefinedundefined-2 .feature-content .content-inner {
    padding: 2rem;
  }

  .softwareundefinedundefined-2 h3 {
    font-size: 22px;
  }

  .softwareundefinedundefined-2 .feature-list,
  .softwareundefinedundefined-2 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Softwareundefinedundefined 3 Section
--------------------------------------------------------------*/
.softwareundefinedundefined-3 {
  --background-color: rgba(217, 234, 211, 0.585);
  background: color-mix(in srgb, var(--my-bg-01), transparent 66%);
}

@media (max-width: 500px) {
  .softwareundefinedundefined-3 {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .softwareundefinedundefined-3 .container {
    padding: 0;
  }
}

.softwareundefinedundefined-3 .mbz-tab-1 {
  padding-left: 6px;
}

.softwareundefinedundefined-3 .features-card {
  padding: 20px;
  margin-bottom: 2.5rem;
  /*2.5rem;*/
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softwareundefinedundefined-3 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.softwareundefinedundefined-3 .features-card:last-child {
}

.softwareundefinedundefined-3 .feature-image-xxx {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.softwareundefinedundefined-3 .feature-image-xxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.softwareundefinedundefined-3 .feature-image-xxx:hover img {
  transform: scale(1.05);
}

.softwareundefinedundefined-3 .feature-image-xxx .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.softwareundefinedundefined-3 .feature-image-xxx .overlay-icon i {
  font-size: 24px;
}

.softwareundefinedundefined-3 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: start;
  /*center;*/
  height: 100% !important;
  /*mm*/
}

.softwareundefinedundefined-3 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .softwareundefinedundefined-3 .feature-content .content-inner {
    padding: 2rem;
  }
}

.softwareundefinedundefined-3 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.softwareundefinedundefined-3 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .softwareundefinedundefined-3 h3 {
    font-size: 24px;
  }
}

.softwareundefinedundefined-3 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.softwareundefinedundefined-3 .feature-list {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefinedundefined-3 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined-3 .feature-list li:last-child {
  margin-bottom: 0;
}

.softwareundefinedundefined-3 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined-3 .feature-list-ol {
  list-style: none;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.softwareundefinedundefined-3 .feature-list-ol li {
  font-weight: bold !important;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.softwareundefinedundefined-3 .feature-list-ol li:last-child {
  margin-bottom: 0;
}

.softwareundefinedundefined-3 .feature-list-ol li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.softwareundefinedundefined-3 .feature-action {
  margin-top: 1.5rem;
}

.softwareundefinedundefined-3 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.softwareundefinedundefined-3 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.softwareundefinedundefined-3 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.softwareundefinedundefined-3 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .softwareundefinedundefined-3 .feature-image,
  .softwareundefinedundefined-3 .feature-content {
    height: auto;
  }

  .softwareundefinedundefined-3 .feature-content .content-inner {
    padding: 2rem;
  }

  .softwareundefinedundefined-3 h3 {
    font-size: 22px;
  }

  .softwareundefinedundefined-3 .feature-list,
  .softwareundefinedundefined-3 .feature-list-ol {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Softwareundefinedundefined 4 Section
--------------------------------------------------------------*/
.softwareundefinedundefined-4 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.softwareundefinedundefined-4 .service-item .icon {
  margin-bottom: 10px;
}

.softwareundefinedundefined-4 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.softwareundefinedundefined-4 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

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

.softwareundefinedundefined-4 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.softwareundefinedundefined-4 .service-item:hover {
  transform: translateY(-10px);
}

.softwareundefinedundefined-4 .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero It 3 Section
--------------------------------------------------------------*/
.hero-it-3 {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEEEEE;
  /*
  #herobg{
    xfilter: blur(8.5px);
  }
  */
}

@media screen and (orientation: portrait) and (max-width: 639px),
(max-height: 599px) {
  .hero-it-3 {
    padding: 40px 0;
  }
}

.hero-it-3 .mbrztab1 {
  padding-left: 20px;
}

.hero-it-3 .mbz-nowrap {
  white-space: nowrap;
}

.hero-it-3 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.hero-it-3 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.hero-it-3 .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  background-color: burlywood;
  background-image: url("https://bsm.maibriz.com/AdobeStock_299668710-mm2.png");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-it-3 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-it-3 .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.hero-it-3 .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(-10px) !important;
  transition: 0.2s !important;
}

.hero-it-3 #hero-hand {
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.hero-it-3 #mbz-hero-div {
  text-align: center;
  padding: 10px 30px;
  /* center; */
  /* 100%; GRRR */
}

.hero-it-3 .btn-0 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-3 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.hero-it-3 .btn-1 {
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-3 .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.hero-it-3 .btn-2 {
  border-color: color-mix(in srgb, #c0392b, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-3 .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #c0392b, transparent 15%) !important;
}

.hero-it-3 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-3 .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
}

.hero-it-3 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-3 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.hero-it-3 .typed-cursor {
  opacity: 0.31;
}

.hero-it-3 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.hero-it-3 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-it-3 #mbz-typed-2>span {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-3 #mbz-typed-2 .typed {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-3 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-it-3 .container {
  z-index: 3;
}

.hero-it-3 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-it-3 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-it-3 .content {
  margin-top: 40px;
}

.hero-it-3 .content .why-box {
  color: var(--contrast-color);
  background: #0055a1;
  /* var(--accent-color); */
  padding: 30px;
  border-radius: 4px;
}

.hero-it-3 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-it-3 .content .why-box p {
  margin-bottom: 30px;
}

.hero-it-3 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-it-3 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-it-3 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-it-3 .content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-it-3 .content .why-box-2 {
  text-align: center;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  color: #e77339;
  background: color-mix(in srgb, var(--contrast-color), transparent 72%) !important;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 25px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.hero-it-3 .content .why-box-2 h3 {
  color: #e77339;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.hero-it-3 .content .why-box-2 p {
  margin-bottom: 30px;
}

.hero-it-3 .content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
}

.hero-it-3 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-it-3 .content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.hero-it-3 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.hero-it-3 .content .icon-box h4 a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
}

.hero-it-3 .content .icon-box h4 a:hover {
  text-decoration: underline;
}

.hero-it-3 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Hero Itundefined Section
--------------------------------------------------------------*/
.hero-itundefined {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEEEEE;
  /*
  #herobg{
    xfilter: blur(8.5px);
  }
  */
}

@media screen and (orientation: portrait) and (max-width: 639px),
(max-height: 599px) {
  .hero-itundefined {
    padding: 40px 0;
  }
}

.hero-itundefined .mbrztab1 {
  padding-left: 20px;
}

.hero-itundefined .mbz-nowrap {
  white-space: nowrap;
}

.hero-itundefined .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.hero-itundefined .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.hero-itundefined .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  background-color: burlywood;
  background-image: url("https://bsm.maibriz.com/AdobeStock_299668710-mm2.png");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-itundefined .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-itundefined .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.hero-itundefined .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(-10px) !important;
  transition: 0.2s !important;
}

.hero-itundefined #hero-hand {
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.hero-itundefined #mbz-hero-div {
  text-align: center;
  padding: 10px 30px;
  /* center; */
  /* 100%; GRRR */
}

.hero-itundefined .btn-0 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.hero-itundefined .btn-1 {
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.hero-itundefined .btn-2 {
  border-color: color-mix(in srgb, #c0392b, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #c0392b, transparent 15%) !important;
}

.hero-itundefined .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
}

.hero-itundefined .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.hero-itundefined .typed-cursor {
  opacity: 0.31;
}

.hero-itundefined .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.hero-itundefined #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-itundefined #mbz-typed-2>span {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-itundefined #mbz-typed-2 .typed {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

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

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

.hero-itundefined .container {
  z-index: 3;
}

.hero-itundefined .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-itundefined .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-itundefined .content {
  margin-top: 40px;
}

.hero-itundefined .content .why-box {
  color: var(--contrast-color);
  background: #0055a1;
  /* var(--accent-color); */
  padding: 30px;
  border-radius: 4px;
}

.hero-itundefined .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-itundefined .content .why-box p {
  margin-bottom: 30px;
}

.hero-itundefined .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-itundefined .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-itundefined .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-itundefined .content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-itundefined .content .why-box-2 {
  text-align: center;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  color: #e77339;
  background: color-mix(in srgb, var(--contrast-color), transparent 72%) !important;
  /*
        margin-left: 10px; margin-right: 10px;
  */
  padding: 15px 25px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.hero-itundefined .content .why-box-2 h3 {
  color: #e77339;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.hero-itundefined .content .why-box-2 p {
  margin-bottom: 30px;
}

.hero-itundefined .content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
}

.hero-itundefined .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-itundefined .content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.hero-itundefined .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.hero-itundefined .content .icon-box h4 a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
}

.hero-itundefined .content .icon-box h4 a:hover {
  text-decoration: underline;
}

.hero-itundefined .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Hero Itundefined 2 Section
--------------------------------------------------------------*/
.hero-itundefined-2 {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEEEEE;
  /*
  #herobg{
    xfilter: blur(8.5px);
  }
  */
}

@media screen and (orientation: portrait) and (max-width: 639px),
(max-height: 599px) {
  .hero-itundefined-2 {
    padding: 40px 0;
  }
}

.hero-itundefined-2 .mbrztab1 {
  padding-left: 20px;
}

.hero-itundefined-2 .mbz-nowrap {
  white-space: nowrap;
}

.hero-itundefined-2 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.hero-itundefined-2 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.hero-itundefined-2 .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  background-color: burlywood;
  background-image: url("https://bsm.maibriz.com/AdobeStock_299668710-mm2.png");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-itundefined-2 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-itundefined-2 .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.hero-itundefined-2 .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(-10px) !important;
  transition: 0.2s !important;
}

.hero-itundefined-2 #hero-hand {
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.hero-itundefined-2 #mbz-hero-div {
  text-align: center;
  padding: 10px 30px;
  /* center; */
  /* 100%; GRRR */
}

.hero-itundefined-2 .btn-0 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined-2 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.hero-itundefined-2 .btn-1 {
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined-2 .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.hero-itundefined-2 .btn-2 {
  border-color: color-mix(in srgb, #c0392b, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined-2 .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #c0392b, transparent 15%) !important;
}

.hero-itundefined-2 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined-2 .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
}

.hero-itundefined-2 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-itundefined-2 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.hero-itundefined-2 .typed-cursor {
  opacity: 0.31;
}

.hero-itundefined-2 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.hero-itundefined-2 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-itundefined-2 #mbz-typed-2>span {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-itundefined-2 #mbz-typed-2 .typed {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-itundefined-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-itundefined-2 .container {
  z-index: 3;
}

.hero-itundefined-2 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-itundefined-2 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-itundefined-2 .content {
  margin-top: 40px;
}

.hero-itundefined-2 .content .why-box {
  color: var(--contrast-color);
  background: #0055a1;
  /* var(--accent-color); */
  padding: 30px;
  border-radius: 4px;
}

.hero-itundefined-2 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-itundefined-2 .content .why-box p {
  margin-bottom: 30px;
}

.hero-itundefined-2 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-itundefined-2 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-itundefined-2 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-itundefined-2 .content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-itundefined-2 .content .why-box-2 {
  text-align: center;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  color: #e77339;
  background: color-mix(in srgb, var(--contrast-color), transparent 72%) !important;
  /*
        margin-left: 10px; margin-right: 10px;
  */
  padding: 15px 25px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.hero-itundefined-2 .content .why-box-2 h3 {
  color: #e77339;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.hero-itundefined-2 .content .why-box-2 p {
  /* margin-bottom: 30px; */
  margin-bottom: 0;
}

.hero-itundefined-2 .content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
  height: auto;
}

.hero-itundefined-2 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-itundefined-2 .content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.hero-itundefined-2 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.hero-itundefined-2 .content .icon-box h4 a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
}

.hero-itundefined-2 .content .icon-box h4 a:hover {
  text-decoration: underline;
}

.hero-itundefined-2 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Hero It 4 Section
--------------------------------------------------------------*/
.hero-it-4 {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEEEEE;
  /*
  #herobg{
    xfilter: blur(8.5px);
  }
  */
}

@media screen and (orientation: portrait) and (max-width: 639px),
(max-height: 599px) {
  .hero-it-4 {
    padding: 40px 0;
  }
}

.hero-it-4 .mbrztab1 {
  padding-left: 20px;
}

.hero-it-4 .mbz-nowrap {
  white-space: nowrap;
}

.hero-it-4 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.hero-it-4 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.hero-it-4 .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  background-color: burlywood;
  background-image: url("https://bsm.maibriz.com/AdobeStock_299668710-mm2.png");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-it-4 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-it-4 .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.hero-it-4 .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(-10px) !important;
  transition: 0.2s !important;
}

.hero-it-4 #hero-hand {
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.hero-it-4 #mbz-hero-div {
  text-align: center;
  padding: 10px 30px;
  /* center; */
  /* 100%; GRRR */
}

.hero-it-4 .btn-0 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-4 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.hero-it-4 .btn-1 {
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-4 .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.hero-it-4 .btn-2 {
  border-color: color-mix(in srgb, #c0392b, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-4 .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #c0392b, transparent 15%) !important;
}

.hero-it-4 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-4 .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
}

.hero-it-4 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-4 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.hero-it-4 .typed-cursor {
  opacity: 0.31;
}

.hero-it-4 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.hero-it-4 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-it-4 #mbz-typed-2>span {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-4 #mbz-typed-2 .typed {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-4 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-it-4 .container {
  z-index: 3;
}

.hero-it-4 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-it-4 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-it-4 .content {
  margin-top: 40px;
}

.hero-it-4 .content .why-box {
  color: var(--contrast-color);
  background: #0055a1;
  /* var(--accent-color); */
  padding: 30px;
  border-radius: 4px;
}

.hero-it-4 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-it-4 .content .why-box p {
  margin-bottom: 30px;
}

.hero-it-4 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-it-4 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-it-4 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-it-4 .content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-it-4 .content .why-box-2 {
  text-align: center;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  color: #e77339;
  background: color-mix(in srgb, var(--contrast-color), transparent 72%) !important;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 25px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.hero-it-4 .content .why-box-2 h3 {
  color: #e77339;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.hero-it-4 .content .why-box-2 p {
  margin-bottom: 30px;
}

.hero-it-4 .content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
}

.hero-it-4 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-it-4 .content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.hero-it-4 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.hero-it-4 .content .icon-box h4 a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
}

.hero-it-4 .content .icon-box h4 a:hover {
  text-decoration: underline;
}

.hero-it-4 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Hero It 5 Section
--------------------------------------------------------------*/
.hero-it-5 {
  width: 100%;
  xmin-height: 100vh;
  /* padding: 80px 0; */
  padding-top: 10px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #EEEEEE;
  /*
  #herobg{
    xfilter: blur(8.5px);
  }
  */
}

@media screen and (orientation: portrait) and (max-width: 639px),
(max-height: 599px) {
  .hero-it-5 {
    padding: 40px 0;
  }
}

.hero-it-5 .mbrztab1 {
  xfont-weight: bold;
  padding-left: 20px;
  font-weight: bold;
  text-shadow: #e77339 2px 0 20px;
}

.hero-it-5 .mbz-nowrap {
  white-space: nowrap;
}

.hero-it-5 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.hero-it-5 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.hero-it-5 .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  /* background-color: burlywood; */
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund.jpg");
  /*
      background-color: rgba(231, 115, 57, 0.72);
      background-blend-mode: color-dodge;
  */
  background-color: rgba(255, 255, 255, 0.72);
  background-repeat: no-repeat;
  background-position: 60% 0;
  /* 50% 0 */
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-it-5 .hero-hdr {
  xz-index: -1 !important;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  width: 100%;
  height: 200px;
  background-position: 60% 30%;
}

.hero-it-5 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-it-5 .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.hero-it-5 .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(6px) !important;
  transition: 0.2s !important;
}

.hero-it-5 #hero-hand {
  filter: opacity(0.87);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.hero-it-5 #mbz-hero-div {
  /*
          transform: scale(0.5, 0.5);
  -ms-transform: scale(0.5, 0.5);
  -webkit-transform: scale(0.5, 0.5);
  */
  text-align: center;
  padding: 10px 30px;
}

.hero-it-5 .btn-0 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-5 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.hero-it-5 .btn-1 {
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-5 .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.hero-it-5 .btn-2 {
  border-color: color-mix(in srgb, #c0392b, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-5 .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #c0392b, transparent 15%) !important;
}

.hero-it-5 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-5 .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%) !important;
}

.hero-it-5 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-style: solid;
  border-width: 1px;
}

.hero-it-5 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.hero-it-5 .typed-cursor {
  opacity: 0.31;
}

.hero-it-5 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.hero-it-5 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-it-5 #mbz-typed-2>span {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-5 #mbz-typed-2 .typed {
  font-weight: 200;
  color: white;
  background-color: #004c90;
}

.hero-it-5 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero-it-5 .container {
  z-index: 3;
}

.hero-it-5 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-it-5 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-it-5 .maibriz-welcome {
  padding: 40px;
  padding-left: 60px;
}

.hero-it-5 .maibriz-welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-it-5 .maibriz-welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-it-5 .content {
  margin-top: 40px;
}

.hero-it-5 .content .why-box {
  color: var(--contrast-color);
  background: #0055a1;
  /* var(--accent-color); */
  padding: 30px;
  border-radius: 4px;
}

.hero-it-5 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-it-5 .content .why-box p {
  margin-bottom: 30px;
}

.hero-it-5 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-it-5 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-it-5 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-it-5 .content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-it-5 .content .why-box-2 {
  text-align: center;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  color: #e77339;
  background: color-mix(in srgb, var(--contrast-color), transparent 72%) !important;
  /*
        margin-left: 10px; margin-right: 10px;
  */
  padding: 15px 25px;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.hero-it-5 .content .why-box-2 h3 {
  color: #e77339;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.hero-it-5 .content .why-box-2 p {
  /* margin-bottom: 30px; */
  margin-bottom: 0;
}

.hero-it-5 .content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
  height: auto;
}

.hero-it-5 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-it-5 .content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.hero-it-5 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.hero-it-5 .content .icon-box h4 a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
}

.hero-it-5 .content .icon-box h4 a:hover {
  text-decoration: underline;
}

.hero-it-5 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media screen and (orientation: landscape) and (max-width: 741px),
screen and (max-height: 389px),
screen and (orientation: portrait) and (max-width: 389px) {
  .hero-it-5 #hero-hand {
    display: none;
  }
}

/*--------------------------------------------------------------
# Contactundefined 2 Section
--------------------------------------------------------------*/
.contactundefined-2 .mbz-tab-1 {
  padding-left: 6px;
}

.contactundefined-2 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactundefined-2 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contactundefined-2 .features-card:last-child {
  margin-bottom: 0;
}

.contactundefined-2 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.contactundefined-2 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contactundefined-2 .feature-image:hover img {
  transform: scale(1.05);
}

.contactundefined-2 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactundefined-2 .feature-image .overlay-icon i {
  font-size: 24px;
}

.contactundefined-2 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.contactundefined-2 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .contactundefined-2 .feature-content .content-inner {
    padding: 2rem;
  }
}

.contactundefined-2 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contactundefined-2 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .contactundefined-2 h3 {
    font-size: 24px;
  }
}

.contactundefined-2 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.contactundefined-2 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.contactundefined-2 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.contactundefined-2 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contactundefined-2 .feature-list li:last-child {
  margin-bottom: 0;
}

.contactundefined-2 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.contactundefined-2 .feature-action {
  margin-top: 1.5rem;
}

.contactundefined-2 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contactundefined-2 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.contactundefined-2 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.contactundefined-2 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .contactundefined-2 .feature-image,
  .contactundefined-2 .feature-content {
    height: auto;
  }

  .contactundefined-2 .feature-content .content-inner {
    padding: 2rem;
  }

  .contactundefined-2 h3 {
    font-size: 22px;
  }

  .contactundefined-2 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contactundefined 3 Section
--------------------------------------------------------------*/
.contactundefined-3 .psmaller {
  font-size: 0.625em;
}

.contactundefined-3 .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contactundefined-3 .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

.contactundefined-3 .service-card:hover .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.contactundefined-3 .service-card:hover h3,
.contactundefined-3 .service-card:hover p {
  color: var(--contrast-color);
}

.contactundefined-3 .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.contactundefined-3 .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.contactundefined-3 .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.contactundefined-3 .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.contactundefined-3 .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contactundefined-3 .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.contactundefined-3 .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contactundefined-3 .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contactundefined-3 .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contactundefined-3 .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.contactundefined-3 .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contactundefined-3 .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.contactundefined-3 .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Contactundefined 6 Section
--------------------------------------------------------------*/
.contactundefined-6 .psmaller {
  font-size: 0.625em;
}

.contactundefined-6 .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contactundefined-6 .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

.contactundefined-6 .service-card:hover .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.contactundefined-6 .service-card:hover h3,
.contactundefined-6 .service-card:hover p {
  color: var(--contrast-color);
}

.contactundefined-6 .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.contactundefined-6 .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.contactundefined-6 .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.contactundefined-6 .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.contactundefined-6 .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contactundefined-6 .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.contactundefined-6 .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contactundefined-6 .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contactundefined-6 .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contactundefined-6 .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.contactundefined-6 .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contactundefined-6 .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.contactundefined-6 .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Contactundefined 5 Section
--------------------------------------------------------------*/
.contactundefined-5 .psmaller {
  font-size: 0.625em;
}

.contactundefined-5 .service-card {
  position: relative;
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contactundefined-5 .service-card:hover {
  transform: translateY(-10px);
  background-color: var(--accent-color);
}

.contactundefined-5 .service-card:hover .icon-wrapper {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.contactundefined-5 .service-card:hover h3,
.contactundefined-5 .service-card:hover p {
  color: var(--contrast-color);
}

.contactundefined-5 .service-card:hover .hover-content {
  color: var(--contrast-color);
  transform: translateY(0);
}

.contactundefined-5 .service-card:hover .hover-content h4 {
  color: var(--contrast-color);
}

.contactundefined-5 .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.contactundefined-5 .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: 0.3s;
  color: var(--heading-color);
}

.contactundefined-5 .service-card p {
  margin-bottom: 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contactundefined-5 .service-card .hover-content {
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.contactundefined-5 .service-card .hover-content h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contactundefined-5 .service-card .hover-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contactundefined-5 .service-card .hover-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contactundefined-5 .service-card .hover-content ul li i {
  font-size: 1.1rem;
}

.contactundefined-5 .service-card .hover-content .service-link {
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contactundefined-5 .service-card .hover-content .service-link i {
  transition: 0.3s;
}

.contactundefined-5 .service-card .hover-content .service-link:hover i {
  transform: translateX(5px);
}

.contactundefined-5 .mbz-tab-1 {
  padding-left: 6px;
}

.contactundefined-5 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contactundefined-5 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contactundefined-5 .features-card:last-child {
  margin-bottom: 0;
}

.contactundefined-5 .feature-image {
  background-color: white;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.contactundefined-5 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contactundefined-5 .feature-image:hover img {
  transform: scale(1.05);
}

.contactundefined-5 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactundefined-5 .feature-image .overlay-icon i {
  font-size: 24px;
}

.contactundefined-5 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.contactundefined-5 .feature-content .content-inner {
  padding: 3rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 992px) {
  .contactundefined-5 .feature-content .content-inner {
    padding: 2rem;
  }
}

.contactundefined-5 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contactundefined-5 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .contactundefined-5 h3 {
    font-size: 24px;
  }
}

.contactundefined-5 h4 {
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.contactundefined-5 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.1rem;
  /* 1.5rem; */
  line-height: 1.6;
}

.contactundefined-5 .feature-list {
  list-style: none;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 1.5rem;
}

.contactundefined-5 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contactundefined-5 .feature-list li:last-child {
  margin-bottom: 0;
}

.contactundefined-5 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.contactundefined-5 .feature-action {
  margin-top: 1.5rem;
}

.contactundefined-5 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contactundefined-5 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.contactundefined-5 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.contactundefined-5 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .contactundefined-5 .feature-image,
  .contactundefined-5 .feature-content {
    height: auto;
  }

  .contactundefined-5 .feature-content .content-inner {
    padding: 2rem;
  }

  .contactundefined-5 h3 {
    font-size: 22px;
  }

  .contactundefined-5 h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contactundefined 4 Section
--------------------------------------------------------------*/
.contactundefined-4 .psmaller {
  font-size: 0.625em;
}

.contactundefined-4 .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.contactundefined-4 .info-card:hover {
  transform: translateY(-5px);
}

.contactundefined-4 .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contactundefined-4 .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contactundefined-4 .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contactundefined-4 .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.contactundefined-4 .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contactundefined-4 .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contactundefined-4 .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contactundefined-4 .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contactundefined-4 .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contactundefined-4 .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contactundefined-4 .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contactundefined-4 .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Hero Top Test Section
--------------------------------------------------------------*/
.hero-top-test {
  margin: 0;
  padding: 0;
}

.hero-top-test .hero-f0-h {
  height: 100px;
  /*120px*/
}

@media screen and (width < 600px) {
  .hero-top-test .hero-f0-h {
    height: 30px;
  }
}

@media screen and (width < 400px) {
  .hero-top-test .hero-f0-h {
    height: 10px;
    display: none;
  }
}

.hero-top-test .hero-f0 {
  height: 100px;
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-h1 20s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-h1 {
  0% {
    background-position: 0% 50%;
  }

  /*
  25% {
    background-position: 50% 50%;
  }
  */
  50% {
    background-position: 100% 50%;
  }

  /*
  75% {
    background-position: 0% 75%;
  }
  */
  100% {
    background-position: 0% 50%;
  }
}

.hero-top-test .hero-f0-bg {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  /* background-color: burlywood; */
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  /*url('https://mbrz.maibriz.com/img/maibriz-it-solutions-14i3.svg');*/
  /*
  background-color: rgba(231, 115, 57, 0.72);
  background-blend-mode: color-dodge;
  */
  background-color: white;
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 60% 0;
  /* 50% 0 */
  background-size: cover;
  /*
      border-radius: 10px;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

/*--------------------------------------------------------------
# Hero Footer Section
--------------------------------------------------------------*/
.hero-footer {
  margin: 0;
  padding: 0;
}

.hero-footer .content {
  padding: 20px 0;
  padding: 0;
}

.hero-footer .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.hero-footer .mbrztab1 {
  padding-left: 20px;
  font-weight: bold;
  color: #eeeeee;
  text-shadow: #fc0 4px 0 20px;
}

.hero-footer .mbz-nowrap {
  white-space: nowrap;
}

.hero-footer .mbrzmisi1 {
  z-index: 3;
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2rem;
}

@media (max-width: 700px) {
  .hero-footer .mbrzmisi1 {
    font-size: 1.625rem;
  }
}

.hero-footer .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  border-radius: 5px;
}

.hero-footer .hero-opa-1 {
  /*opacity: .66;*/
}

.hero-footer .hero-aaa-1 {
  border: 0;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.66), rgba(205, 97, 85, 0.66), rgba(93, 173, 226, 0.66), rgba(88, 214, 141, 0.66), rgba(220, 118, 51, 0.66), rgba(153, 163, 164, 0.66));
  background-size: 400% 400%;
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-h1 20s linear infinite;
}

@keyframes BackgroundGradient-h1 {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-footer .hero-bbb-1 {
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  background-color: white;
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 60% 0;
  background-size: cover;
}

.hero-footer .mbz-hero-div-1 {
  text-align: center;
  padding: 10px 30px;
}

.hero-footer .mbz-hero-div-1 img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

/*--------------------------------------------------------------
# Calltoaction 2 Section
--------------------------------------------------------------*/
.calltoaction-2 {
  xposition: relative;
  clip-path: inset(0);
}

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

.calltoaction-2:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.calltoaction-2 h3 {
  /* color: var(--default-color); */
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-2 strong {
  color: #e77339;
}

.calltoaction-2 .cta-section {
  margin-top: 4rem;
}

.calltoaction-2 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Calltoaction 3 Section
--------------------------------------------------------------*/
.calltoaction-3 {
  --background-color: #bcbcbc;
  xposition: relative;
  clip-path: inset(0);
}

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

.calltoaction-3:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.calltoaction-3 h3 {
  /* color: var(--default-color); */
  color: #bcbcbc;
  font-size: 28px;
  font-weight: 700;
}

.calltoaction-3 strong {
  color: #e77339;
}

.calltoaction-3 .cta-section {
  margin-top: 4rem;
}

.calltoaction-3 .cta-section .cta-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Hero Top Section
--------------------------------------------------------------*/
.hero-top {
  margin: 0;
  padding: 0;
}

.hero-top .hero-f0-h {
  /*120px*/
  /*
      @media screen and (width < 800px) {
        height: 30px !important;
      }
      @media screen and (width < 600px) {
        height: 10px !important;
        xxxdisplay: none;
      }    
      */
}

@media screen and (max-width: 799px) {
  .hero-top .hero-f0-h {
    height: 30px !important;
  }
}

@media screen and (max-width: 599px) {
  .hero-top .hero-f0-h {
    height: 10px !important;
  }
}

.hero-top .hero-f0 {
  height: 48px;
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-h1 8s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-h1 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-top .hero-f0-bg {
  background-color: white;
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 60% 0;
  background-size: cover;
}

/*--------------------------------------------------------------
# It Hero 2 Section
--------------------------------------------------------------*/
.it-hero-2 {
  padding-top: 40px;
  --why-bg-color: #0055a1;
  --my-background-color: #EEEEEE;
  --my-nav-background-color: #5b5b5b;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
  background-color: var(--my-background-color);
}

.scrolled .it-hero-2 .hero-img {
  background-color: #fff2dd !important;
}

.it-hero-2 h2>a {
  color: var(--why-bg-color);
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .it-hero-2 {
    padding-top: 20px !important;
  }
}

.it-hero-2 .h4-dbg-xx {
  border-color: red;
  border-style: solid;
  border-width: 1px;
}

.it-hero-2 .mbrztab0 {
  padding-left: 20px;
}

.it-hero-2 .mbrztab1 {
  padding-left: 20px;
  font-weight: bold;
  color: #5b5b5b;
  text-shadow: #e77339 4px 0 20px;
}

@media (max-width: 600px) {
  .it-hero-2 .mbrztab1 {
    padding-left: 0 !important;
    font-size: 1.625rem;
  }
}

@media (max-width: 400px) {
  .it-hero-2 .mbrztab1 {
    padding-left: 0 !important;
    font-size: 1.4rem;
  }
}

.it-hero-2 .mbz-nowrap {
  white-space: nowrap;
}

.it-hero-2 .mbrzmisi1 {
  position: relative;
  top: 10px;
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2rem;
}

@media (max-width: 400px) {
  .it-hero-2 .mbrzmisi1 {
    font-size: 1.4rem !important;
  }
}

.it-hero-2 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  border-radius: 5px;
}

.it-hero-2 .hero-ooo1 {
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4, #ffffff);
  background-size: 400% 400%;
  animation: BackgroundGradient-x 15s ease infinite;
  opacity: 0.7;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero-2 .hero-ooo {
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-x 20s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero-2 .hero-bbb {
  --angle: 45deg;
  background: linear-gradient(var(--angle), #ededed, #bdbdbd);
  background: linear-gradient(var(--angle), rgb(245, 245, 237), rgb(189, 189, 189));
  background-color: rgba(255, 255, 255, 0.72);
  background-repeat: no-repeat;
  background-position: 60% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-hero-2 .hero-border {
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-hero-2 .hero-border-1 {
  border: none;
  box-shadow: 4px 4px 14px rgba(231, 115, 57, 0.4);
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.scrolled .it-hero-2 .hero-border-1 {
  background-color: #fff2dd !important;
}

.scrolled .it-hero-2 .hero-border-1 h2,
.scrolled .it-hero-2 .hero-border-1 h3 {
  color: var(--my-nav-background-color) !important;
}

.it-hero-2 .hero-border-2 {
  border: none;
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 40px !important;
  border-top-left-radius: 40px !important;
}

.it-hero-2 .hero-border-33 {
  border-color: white !important;
  border-width: 8px !important;
  border-style: solid;
}

.it-hero-2 .hero-hdr {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  width: 100%;
  height: 200px;
  background-position: 60% 30%;
}

.it-hero-2 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.it-hero-2 .hero-img img {
  transition: transform 0.3s ease;
}

.it-hero-2 .hero-img img:hover {
  transform: translateY(6px) !important;
  transition: 0.2s !important;
}

.it-hero-2 #hero-hand {
  filter: opacity(0.87);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

@media (max-width: 400px) {
  .it-hero-2 #hero-hand {
    display: none;
  }
}

.it-hero-2 #mbz-hero-div {
  text-align: center;
  padding: 10px 30px;
}

@media (max-width: 800px) {
  .it-hero-2 #mbz-hero-div h4 {
    font-size: 1.825rem;
  }
}

@media (max-width: 1500px) {
  .it-hero-2 #mbz-hero-div h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 1399px) {
  .it-hero-2 #mbz-hero-div h4 {
    font-size: 2.25rem;
  }
}

.it-hero-2 .btn-00 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
  background-color: #eeeeee !important;
}

.it-hero-2 .btn-0 {
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-2 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.it-hero-2 .btn-1 {
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-2 .btn-1:hover {
  color: var(--contrast-color);
  background: var(--my-bg-01) !important;
}

.it-hero-2 .btn-2 {
  border-color: color-mix(in srgb, #ff9966, transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-2 .btn-2:hover {
  color: var(--contrast-color);
  background: var(--my-bg-02) !important;
}

.it-hero-2 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-2 .btn-3:hover {
  color: var(--contrast-color);
  background: var(--my-bg-03) !important;
}

.it-hero-2 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
}

.it-hero-2 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.it-hero-2 .btn-green-2x {
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero-2 .btn-green-2x:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
}

.it-hero-2 .btn-green-2 {
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero-2 .btn-green-2:hover {
  color: var(--contrast-color);
  background: var(--my-bg-green-2) !important;
}

.it-hero-2 .typed-cursor {
  opacity: 0.31;
}

.it-hero-2 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.it-hero-2 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
  background-color: #eeeeee !important;
}

.it-hero-2 #mbz-typed-2>span {
  color: #004c90 !important;
}

.it-hero-2 #mbz-typed-2 .typed {
  color: #004c90 !important;
}

.it-hero-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.it-hero-2 .container {
  z-index: 3;
}

@media screen and (width >=960px) {
  .it-hero-2 .container {
    max-width: 80%;
  }
}

.it-hero-2 .xxx-welcome-2-brdr {
  border: none;
  box-shadow: 0px 2px 15px rgba(231, 115, 57, 0.8);
  border-radius: 40px;
}

.it-hero-2 .welcome-2-bg {
  background-size: cover;
  background-color: #eee;
}

.scrolled .it-hero-2 .welcome-2-bg {
  background: none;
}

.it-hero-2 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.it-hero-2 .welcome p {
  font-size: 24px;
  margin: 0;
}

.it-hero-2 .welcome-2 {
  padding: 20px;
}

.it-hero-2 .welcome-2 h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.it-hero-2 .welcome-2 p {
  font-size: 24px;
  margin: 0;
}

.maibriz-welcome {
  padding: 40px;
  padding-left: 60px;
}

.maibriz-welcome h2 {
  text-transform: uppercase;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.maibriz-welcome p {
  font-size: 24px;
  margin: 0;
}

@media (max-width: 480px) {
  .maibriz-welcome {
    padding: 20px !important;
  }

  .maibriz-welcome h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 300px) {
  .maibriz-welcome {
    padding: 10px !important;
  }

  .maibriz-welcome h2 {
    font-size: 20px;
  }
}

.content {
  margin-top: 0px;
}

.content .why-box {
  color: var(--contrast-color);
  background: var(--why-bg-color);
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
  padding: 30px;
  border-radius: 4px;
}

.content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.content .why-box p {
  margin-bottom: 30px;
}

.content .why-box .more-btn-2 {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.content .why-box .more-btn-2 i {
  font-size: 14px;
}

.content .why-box .more-btn-2:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.content .why-box span {
  padding-left: 10px;
}

@media screen and (width < 1000px) {
  .content .why-box {
    border-bottom-right-radius: 10px !important;
  }
}

.content .why-box-3 {
  z-index: -1;
  text-align: center;
  background-color: #eeeeee !important;
  padding: 15px 25px;
  width: 100%;
  border: 0;
}

.content .why-box-3 p {
  margin-bottom: 0;
}

.content .why-box-3t {
  z-index: -1;
  text-align: center;
  background: D9D9DB;
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgb(255, 255, 255) 40%);
  padding: 15px 25px;
  width: 100%;
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0px;
  border-top-color: var(--why-bg-color) !important;
  border-bottom-color: var(--why-bg-color) !important;
  border-left-style: none;
  border-bottom-style: solid;
}

.content .why-box-3t p {
  margin-bottom: 0;
}

@media screen and (width < 1000px) {
  .content .why-box-3t {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right-width: 1px;
    border-right-color: #e77339 !important;
  }
}

.content .why-box-5 {
  z-index: -1;
  text-align: right;
  color: var(--contrast-color) !important;
  background: var(--why-bg-color);
  padding: 15px 25px;
  width: 100%;
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.content .why-box-5 h3 {
  color: var(--contrast-color) !important;
  font-weight: 500;
  font-size: 20px;
}

.content .why-box-5 h3 strong {
  color: #e77339;
}

.content .why-box-5 p {
  margin-bottom: 0;
}

.content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100%;
  height: 100%;
}

.content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 8px 0;
}

.content .icon-box h4 a {
  color: var(--why-bg-color) !important;
  text-decoration: none;
}

.content .icon-box h4 a:hover {
  text-decoration: underline;
}

.content .icon-box p {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# It Heroundefined Section
--------------------------------------------------------------*/
.it-heroundefined {
  padding-top: 40px;
  --why-bg-color: #0055a1;
  --my-background-color: #EEEEEE;
  --my-nav-background-color: #5b5b5b;
  width: 100%;
  x-min-height: 100vh;
  x-padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
  background-color: var(--my-background-color);
  /*
  #herobg{
  xfilter: blur(8.5px);
  }
  */
  /*
    .hero-anima-1 {
    background: linear-gradient(132deg, #000000, #00ff00, #0000ff, #e60073, #ff0000, #ffffff);
    background-size: 400% 400%;
    animation: BackgroundGradient 15s ease infinite;

    @keyframes BackgroundGradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    }
    */
}

@media screen and (max-width: 768px) {
  .it-heroundefined {
    /*padding: 40px 0;*/
    padding-top: 20px;
  }
}

.it-heroundefined .h4-dbg-xx {
  border-color: red;
  border-style: solid;
  border-width: 1px;
}

.it-heroundefined .mbrztab1 {
  padding-left: 20px;
  font-weight: bold;
  xfont-weight: normal;
  color: #5b5b5b;
  /* #e77339; */
  text-shadow: #e77339 4px 0 20px;
  x-text-shadow: #e77339 2px 0 20px;
}

.it-heroundefined .mbz-nowrap {
  white-space: nowrap;
}

.it-heroundefined .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.it-heroundefined .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.it-heroundefined .hero-ooo1 {
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4, #ffffff);
  background-size: 400% 400%;
  animation: BackgroundGradient-x 15s ease infinite;
  opacity: 0.7;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-heroundefined .hero-ooo {
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-x 20s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-heroundefined .hero-bbb {
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund.jpg");
  background-color: rgba(255, 255, 255, 0.72);
  background-repeat: no-repeat;
  background-position: 60% 0;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-heroundefined .hero-border {
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-heroundefined .hero-border-1 {
  border: none;
  box-shadow: 4px 4px 14px rgba(231, 115, 57, 0.4);
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.scrolled .it-heroundefined .hero-border-1 {
  background-color: #fff2dd !important;
}

.scrolled .it-heroundefined .hero-border-1 h2,
.scrolled .it-heroundefined .hero-border-1 h3 {
  color: var(--my-nav-background-color) !important;
}

.it-heroundefined .hero-border-2 {
  border: none;
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 40px !important;
  border-top-left-radius: 40px !important;
}

.it-heroundefined .hero-border-33 {
  border-color: white !important;
  border-width: 8px !important;
  border-style: solid;
}

.it-heroundefined .hero-hdr {
  xz-index: -1 !important;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  width: 100%;
  height: 200px;
  background-position: 60% 30%;
}

.it-heroundefined .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.it-heroundefined .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.it-heroundefined .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(6px) !important;
  transition: 0.2s !important;
}

.it-heroundefined #hero-hand {
  filter: opacity(0.87);
  /* border-radius: 14px; */
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.it-heroundefined #mbz-hero-div {
  /*
      transform: scale(0.5, 0.5);
      -ms-transform: scale(0.5, 0.5);
      -webkit-transform: scale(0.5, 0.5);
    */
  text-align: center;
  padding: 10px 30px;
}

.it-heroundefined .btn-00 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
  background-color: #eeeeee !important;
}

.it-heroundefined .btn-0 {
  /*
  border-color: silver !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-heroundefined .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.it-heroundefined .btn-1 {
  /*
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-color: color-mix(in srgb, var(--accent-color), transparent 0%) !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-heroundefined .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.it-heroundefined .btn-2 {
  border-color: color-mix(in srgb, #ff9966, transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-heroundefined .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #ff9966, transparent 45%) !important;
  /* background: color-mix(in srgb, #c0392b, transparent 15%) !important; */
}

.it-heroundefined .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-heroundefined .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
}

.it-heroundefined .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
}

.it-heroundefined .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.it-heroundefined .btn-green-2x {
  /*
  border-color: rgba(217, 234, 211, 1) !important;
  */
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-heroundefined .btn-green-2x:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-heroundefined .btn-green-2 {
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-heroundefined .btn-green-2:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-heroundefined .typed-cursor {
  opacity: 0.31;
}

.it-heroundefined .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.it-heroundefined #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
  background-color: #eeeeee !important;
}

.it-heroundefined #mbz-typed-2>span {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;
  color: white;
  background-color: #004c90;
  */
}

.it-heroundefined #mbz-typed-2 .typed {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;      
  color: white;
  background-color: #004c90;
  */
}

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

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

.it-heroundefined .container {
  z-index: 3;
  /*
  padding:0 !important;
  margin: 0 !important;
  padding-right:0 !important;
  padding-left:0 !important;

  margin-right:auto;
  margin-left:auto; 
  max-width: 77%;
  */
}

@media screen and (width >=960px) {
  .it-heroundefined .container {
    max-width: 80%;
  }
}

.it-heroundefined .xxx-welcome-2-brdr {
  border: none;
  box-shadow: 0px 2px 15px rgba(231, 115, 57, 0.8);
  border-radius: 40px;
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  /* #5dad; */
}

.it-heroundefined .welcome-2-bg {
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  background-size: cover;
  background-color: #eee;
  /* #5b5b5b */
  /* #5dad; */
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgba(238, 238, 170, 0.6666666667) 40%, #eee 80%);
}

.scrolled .it-heroundefined .welcome-2-bg {
  background: none;
}

.it-heroundefined .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.it-heroundefined .welcome p {
  font-size: 24px;
  margin: 0;
}

.it-heroundefined .welcome-2 {
  padding: 20px;
}

.it-heroundefined .welcome-2 h2 {
  margin: 0;
  /*font-size: 48px;*/
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.it-heroundefined .welcome-2 p {
  font-size: 24px;
  margin: 0;
}

.maibriz-welcome {
  padding: 40px;
  padding-left: 60px;
}

.maibriz-welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.maibriz-welcome p {
  font-size: 24px;
  margin: 0;
}

@media screen and (max-width: 360px) {
  .maibriz-welcome {
    padding: 20px;
  }

  .maibriz-welcome h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 300px) {
  .maibriz-welcome {
    padding: 10px;
  }

  .maibriz-welcome h2 {
    font-size: 28px;
  }
}

.content {
  /* margin-top: 40px; */
  margin-top: 0px;
  /*20px;*/
}

.content .why-box {
  color: var(--contrast-color);
  background: var(--why-bg-color);
  /* var(--accent-color); */
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
  padding: 30px;
  border-radius: 4px;
}

.content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.content .why-box p {
  margin-bottom: 30px;
}

.content .why-box .more-btn-2 {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.content .why-box .more-btn-2 i {
  font-size: 14px;
}

.content .why-box .more-btn-2:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.content .why-box span {
  padding-left: 10px;
}

@media screen and (width < 1000px) {
  .content .why-box {
    border-bottom-right-radius: 10px !important;
  }
}

.content .why-box-3 {
  z-index: -1;
  text-align: center;
  background-color: #eeeeee !important;
  padding: 15px 25px;
  width: 100%;
  border: 0;
}

.content .why-box-3 p {
  margin-bottom: 0;
}

.content .why-box-3t {
  z-index: -1;
  text-align: center;
  /*
  background: #FFF;
  background: linear-gradient(45deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 219, 1) 100%);
  */
  background: D9D9DB;
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgb(255, 255, 255) 40%);
  padding: 15px 25px;
  width: 100%;
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0px;
  border-top-color: var(--why-bg-color) !important;
  border-bottom-color: var(--why-bg-color) !important;
  border-left-style: none;
  border-bottom-style: solid;
  /*
  .scrolled & {
  background: D9D9DB;
  background: linear-gradient(90deg,rgba(217, 217, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
  }    
  */
}

.content .why-box-3t p {
  margin-bottom: 0;
}

@media screen and (width < 1000px) {
  .content .why-box-3t {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right-width: 1px;
    border-right-color: #e77339 !important;
  }
}

.content .why-box-5 {
  z-index: -1;
  text-align: left;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  /*
  background-color:#eeeeee !important;
  */
  /*last: background-color: color-mix(in srgb, #555 , transparent 8%) !important; */
  background: var(--why-bg-color);
  /*
    margin-left: 10px; margin-right: 10px;
    */
  padding: 15px 25px;
  width: 100%;
  /*
  border-width: 1px;
  border-style: solid;
  */
  border: 0;
  /*
  border-color: white;
  border-width: 1px;
  border-style: solid;    
  */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /*
  border-bottom-color: var(--why-bg-color) !important;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-right-color:  var(--why-bg-color) !important;
  border-right-width: 2px;
  border-right-style: solid;
  */
  /*
      border-color: white !important;
      border-width: 1px !important;
      border-style: solid;
  */
  /*xxx
  border-left-color:  #e77339 !important;
  border-right-color:  #e77339 !important;
      border-left-width: 1px;
      border-right-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  */
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
  /*
  .scrolled & {
    strong { color: #0055a1 !important; }
    background-color: #fff2dd !important;
  }    
  */
}

.content .why-box-5 h3 {
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.content .why-box-5 h3 strong {
  color: #e77339;
}

.content .why-box-5 p {
  /* margin-bottom: 30px; */
  margin-bottom: 0;
}

.content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
  x-height: auto;
  height: 100%;
}

.content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.content .icon-box h4 a {
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: var(--why-bg-color) !important;
  text-decoration: none;
}

.content .icon-box h4 a:hover {
  text-decoration: underline;
}

.content .icon-box p {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media screen and (orientation: portrait) and (max-width: 768px),
screen and (orientation: landscape) and (max-width: 768px) {
  .content {
    /*padding: 40px 0;*/
    padding: 0;
  }

  .content .welcome-2-bg {
    background-image: none;
    box-shadow: none;
    border-radius: 0;
  }

  .content .mbrztab1 {
    padding-left: 0;
    x-font-weight: normal;
    font-size: 24px;
    color: #0055a1;
    x-text-shadow: #fc0 4px 0 20px;
    text-shadow: #e77339 2px 0 20px;
  }

  .content .hero-bbb-bbb {
    background-size: cover;
    background-image: none;
    background-blend-mode: none;
    /*
    url('https://bsm.maibriz.com/AdobeStock_460733281-mm1.png'), url('https://bsm.maibriz.com/AdobeStock_409021414.jpeg');
    */
  }

  .content .hero-ooo {
    background: none;
  }
}

@media screen and (orientation: portrait) and (max-width: 360px),
screen and (orientation: landscape) and (max-width: 360px) {
  .content .mbrztab1 {
    padding-left: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .content .mbrztab1 {
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# It Hero 3 Section
--------------------------------------------------------------*/
.it-hero-3 {
  padding-top: 40px;
  --why-bg-color: #0055a1;
  --my-background-color: #EEEEEE;
  --my-nav-background-color: #5b5b5b;
  width: 100%;
  x-min-height: 100vh;
  x-padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
  background-color: var(--my-background-color);
  /*
  #herobg{
  xfilter: blur(8.5px);
  }
  */
  /*
    .hero-anima-1 {
    background: linear-gradient(132deg, #000000, #00ff00, #0000ff, #e60073, #ff0000, #ffffff);
    background-size: 400% 400%;
    animation: BackgroundGradient 15s ease infinite;

    @keyframes BackgroundGradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    }
    */
}

@media screen and (max-width: 768px) {
  .it-hero-3 {
    /*padding: 40px 0;*/
    padding-top: 20px;
  }
}

.it-hero-3 .h4-dbg-xx {
  border-color: red;
  border-style: solid;
  border-width: 1px;
}

.it-hero-3 .mbrztab1 {
  padding-left: 20px;
  font-weight: bold;
  xfont-weight: normal;
  color: #eeeeee;
  /* #e77339; */
  text-shadow: #fc0 4px 0 20px;
  x-text-shadow: #e77339 2px 0 20px;
}

.it-hero-3 .mbz-nowrap {
  white-space: nowrap;
}

.it-hero-3 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  font-weight: 700;
  font-size: 2em;
}

.it-hero-3 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  /* outer right cyan */
  /* box-shadow: 120px 80px 40px 20px #0ff; */
  /* in order: x offset, y offset, blur size, spread size, color */
  /* blur size and spread size are optional (they default to 0) */
  border-radius: 5px;
  /* 10px; */
}

.it-hero-3 .hero-ooo1 {
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4, #ffffff);
  background-size: 400% 400%;
  animation: BackgroundGradient-x 15s ease infinite;
  opacity: 0.7;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero-3 .hero-ooo {
  transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  border: 0;
  background: linear-gradient(132deg, #fff, #cd6155, #5dade2, #58d68d, #dc7633, #99a3a4);
  background-size: 400% 400%;
  will-change: transform, background-posistion;
  backface-visibility: hidden;
  animation: BackgroundGradient-x 20s linear infinite;
  opacity: 0.66;
}

@keyframes BackgroundGradient-x {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.it-hero-3 .hero-bbb {
  /*
  margin: 0 !important;
  padding: 0 !important;
  */
  /* background-color: burlywood; */
  background-image: url("https://bsm.maibriz.com/freepik/freepik--hintergrund-des-konzepts-der-digitalen-technologie-elektronische-leiterplatten-symbolstil-grauer-hintergrund-m1.jpg"), url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png"), url("https://bsm.maibriz.com/AdobeStock_409021414.jpeg");
  /*url('https://mbrz.maibriz.com/img/maibriz-it-solutions-14i3.svg');*/
  /*
  background-color: rgba(231, 115, 57, 0.72);
  background-blend-mode: color-dodge;
  */
  background-color: white;
  background-blend-mode: difference, color-dodge;
  background-repeat: no-repeat;
  background-position: 60% 0;
  /* 50% 0 */
  background-size: cover;
  /*
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
}

.it-hero-3 .hero-border {
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.it-hero-3 .hero-border-1 {
  border: none;
  box-shadow: 4px 4px 14px rgba(231, 115, 57, 0.4);
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.scrolled .it-hero-3 .hero-border-1 {
  background-color: #fff2dd !important;
}

.scrolled .it-hero-3 .hero-border-1 h2,
.scrolled .it-hero-3 .hero-border-1 h3 {
  color: var(--my-nav-background-color) !important;
}

.it-hero-3 .hero-border-2 {
  border: none;
  box-shadow: 4px 4px 14px var(--surface-color);
  border-left-style: none;
  border-bottom-style: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 40px !important;
  border-top-left-radius: 40px !important;
}

.it-hero-3 .hero-border-33 {
  border-color: white !important;
  border-width: 8px !important;
  border-style: solid;
}

.it-hero-3 .hero-hdr {
  xz-index: -1 !important;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("https://bsm.maibriz.com/AdobeStock_460733281-mm1.png");
  width: 100%;
  height: 200px;
  background-position: 60% 30%;
}

.it-hero-3 .hero-img {
  border-color: yellow;
  border-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.it-hero-3 .hero-img img {
  /* mbz border-radius: 20px; */
  transition: transform 0.3s ease;
}

.it-hero-3 .hero-img img:hover {
  /* mbz transform: translateY(-10px); */
  transform: translateY(6px) !important;
  transition: 0.2s !important;
}

.it-hero-3 #hero-hand {
  filter: opacity(0.87);
  /* border-radius: 14px; */
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 0 !important;
}

.it-hero-3 #mbz-hero-div {
  /*
      transform: scale(0.5, 0.5);
      -ms-transform: scale(0.5, 0.5);
      -webkit-transform: scale(0.5, 0.5);
    */
  text-align: center;
  padding: 10px 30px;
}

.it-hero-3 .btn-00 {
  border-color: silver !important;
  border-style: solid;
  border-width: 1px;
  background-color: #eeeeee !important;
}

.it-hero-3 .btn-0 {
  /*
  border-color: silver !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-3 .btn-0:hover {
  color: var(--contrast-color);
  background: silver !important;
}

.it-hero-3 .btn-1 {
  /*
  border-color: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
  border-color: color-mix(in srgb, var(--accent-color), transparent 0%) !important;
  */
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-3 .btn-1:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #d4ac0d, transparent 45%) !important;
}

.it-hero-3 .btn-2 {
  border-color: color-mix(in srgb, #ff9966, transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-3 .btn-2:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #ff9966, transparent 45%) !important;
  /* background: color-mix(in srgb, #c0392b, transparent 15%) !important; */
}

.it-hero-3 .btn-3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-left-style: none !important;
}

.it-hero-3 .btn-3:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 45%) !important;
}

.it-hero-3 .btn-green {
  border-color: color-mix(in srgb, green, transparent 15%) !important;
  border-color: var(--why-bg-color) !important;
  border-style: solid;
  border-width: 1px;
}

.it-hero-3 .btn-green:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, green, transparent 15%) !important;
}

.it-hero-3 .btn-green-2x {
  /*
  border-color: rgba(217, 234, 211, 1) !important;
  */
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero-3 .btn-green-2x:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-hero-3 .btn-green-2 {
  border-color: var(--why-bg-color);
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left-style: none;
}

.it-hero-3 .btn-green-2:hover {
  color: var(--contrast-color);
  background: rgb(217, 234, 211) !important;
  /* background: rgba(217, 234, 211, 0.925) !important;      */
}

.it-hero-3 .typed-cursor {
  opacity: 0.31;
}

.it-hero-3 .typed-cursor.typed-cursor--blink {
  animation: typedjsBlink 1.7s infinite;
  -webkit-animation: typedjsBlink 1.7s infinite;
  animation: typedjsBlink 1.7s infinite;
}

.it-hero-3 #mbz-typed-2 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  line-height: 1.2;
  background-color: #eeeeee !important;
}

.it-hero-3 #mbz-typed-2>span {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;
  color: white;
  background-color: #004c90;
  */
}

.it-hero-3 #mbz-typed-2 .typed {
  /*font-weight: 200;*/
  color: #004c90 !important;
  /*
  background-color: white;      
  color: white;
  background-color: #004c90;
  */
}

.it-hero-3 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.it-hero-3 .container {
  z-index: 3;
  /*
  padding:0 !important;
  margin: 0 !important;
  padding-right:0 !important;
  padding-left:0 !important;

  margin-right:auto;
  margin-left:auto; 
  max-width: 77%;
  */
}

@media screen and (width >=960px) {
  .it-hero-3 .container {
    max-width: 80%;
  }
}

.it-hero-3 .xxx-welcome-2-brdr {
  border: none;
  box-shadow: 0px 2px 15px rgba(231, 115, 57, 0.8);
  border-radius: 40px;
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  /* #5dad; */
}

.it-hero-3 .welcome-2-bg {
  /*
    border-color: red; border-style: solid; border-width: 2px;
    */
  background-size: cover;
  background-color: #eee;
  /* #5b5b5b */
  /* #5dad; */
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgba(238, 238, 170, 0.6666666667) 40%, #eee 80%);
}

.scrolled .it-hero-3 .welcome-2-bg {
  background: none;
}

.it-hero-3 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.it-hero-3 .welcome p {
  font-size: 24px;
  margin: 0;
}

.it-hero-3 .welcome-2 {
  padding: 20px;
}

.it-hero-3 .welcome-2 h2 {
  margin: 0;
  /*font-size: 48px;*/
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.it-hero-3 .welcome-2 p {
  font-size: 24px;
  margin: 0;
}

@media screen and (max-width: 360px) {
  .it-hero-3 .welcome-2 {
    padding: 15px;
  }

  .it-hero-3 .welcome-2 h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 300px) {
  .it-hero-3 .welcome-2 {
    padding: 10px;
  }

  .it-hero-3 .welcome-2 h2 {
    font-size: 28px;
  }
}

.content {
  /* margin-top: 40px; */
  margin-top: 0px;
  /*20px;*/
}

.content .why-box {
  color: var(--contrast-color);
  background: var(--why-bg-color);
  /* var(--accent-color); */
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
  padding: 30px;
  border-radius: 4px;
}

.content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.content .why-box p {
  margin-bottom: 30px;
}

.content .why-box .more-btn-2 {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.content .why-box .more-btn-2 i {
  font-size: 14px;
}

.content .why-box .more-btn-2:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.content .why-box h4 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.content .why-box span {
  padding-left: 10px;
}

@media screen and (width < 1000px) {
  .content .why-box {
    border-bottom-right-radius: 10px !important;
  }
}

.content .why-box-3 {
  z-index: -1;
  text-align: center;
  background-color: #eeeeee !important;
  padding: 15px 25px;
  width: 100%;
  border: 0;
}

.content .why-box-3 p {
  margin-bottom: 0;
}

.content .why-box-3t {
  z-index: -1;
  text-align: center;
  /*
  background: #FFF;
  background: linear-gradient(45deg,rgba(255, 255, 255, 1) 0%, rgba(217, 217, 219, 1) 100%);
  */
  background: D9D9DB;
  background: linear-gradient(-190deg, rgba(231, 115, 57, 0.6) 18%, rgb(255, 255, 255) 40%);
  padding: 15px 25px;
  width: 100%;
  border: 0;
  border-style: solid;
  border-width: 1px;
  border-right-width: 0px;
  border-top-color: var(--why-bg-color) !important;
  border-bottom-color: var(--why-bg-color) !important;
  border-left-style: none;
  border-bottom-style: solid;
  /*
  .scrolled & {
  background: D9D9DB;
  background: linear-gradient(90deg,rgba(217, 217, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
  }    
  */
}

.content .why-box-3t p {
  margin-bottom: 0;
}

@media screen and (width < 1000px) {
  .content .why-box-3t {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right-width: 1px;
    border-right-color: #e77339 !important;
  }
}

.content .why-box-5 {
  z-index: -1;
  text-align: left;
  /*color: var(--contrast-color);*/
  /*background: #0055a1;*/
  /* var(--accent-color); */
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  /*
  background-color:#eeeeee !important;
  */
  /*last: background-color: color-mix(in srgb, #555 , transparent 8%) !important; */
  background: var(--why-bg-color);
  /*
    margin-left: 10px; margin-right: 10px;
    */
  padding: 15px 25px;
  width: 100%;
  /*
  border-width: 1px;
  border-style: solid;
  */
  border: 0;
  /*
  border-color: white;
  border-width: 1px;
  border-style: solid;    
  */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /*
  border-bottom-color: var(--why-bg-color) !important;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-right-color:  var(--why-bg-color) !important;
  border-right-width: 2px;
  border-right-style: solid;
  */
  /*
      border-color: white !important;
      border-width: 1px !important;
      border-style: solid;
  */
  /*xxx
  border-left-color:  #e77339 !important;
  border-right-color:  #e77339 !important;
      border-left-width: 1px;
      border-right-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  */
  /* border-color: var(); */
  /*
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  */
  /*
  .scrolled & {
    strong { color: #0055a1 !important; }
    background-color: #fff2dd !important;
  }    
  */
}

.content .why-box-5 h3 {
  /*last color: #e77339;*/
  color: var(--contrast-color) !important;
  font-weight: 500;
  font-size: 20px;
  /*margin-bottom: 30px;*/
}

.content .why-box-5 h3 strong {
  color: #e77339;
}

.content .why-box-5 p {
  /* margin-bottom: 30px; */
  margin-bottom: 0;
}

.content .icon-box {
  cursor: pointer;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*padding: 40px 30px;*/
  /*padding: 10px 30px;*/
  padding: 10px;
  width: 100%;
  x-height: auto;
  height: 100%;
}

.content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.content .icon-box i.mbz-smaller {
  font-size: 20px !important;
  vertical-align: sub;
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  /* margin: 10px 0 20px 0; */
  margin: 10px 0 8px 0;
}

.content .icon-box h4 a {
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: var(--why-bg-color) !important;
  text-decoration: none;
}

.content .icon-box h4 a:hover {
  text-decoration: underline;
}

.content .icon-box p {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 15px;
  /*
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  */
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media screen and (max-width: 768px) {
  .content {
    /*padding: 40px 0;*/
  }

  .content .welcome-2-bg {
    background-image: none;
    box-shadow: none;
    border-radius: 0;
  }

  .content .mbrztab1 {
    padding-left: 0;
    x-font-weight: normal;
    font-size: 24px;
    color: #0055a1;
    x-text-shadow: #fc0 4px 0 20px;
    text-shadow: #e77339 2px 0 20px;
  }

  .content .hero-bbb {
    background-size: cover;
    background-image: none;
    background-blend-mode: none;
    /*
    url('https://bsm.maibriz.com/AdobeStock_460733281-mm1.png'), url('https://bsm.maibriz.com/AdobeStock_409021414.jpeg');
    */
  }

  .content .hero-ooo {
    background: none;
  }
}

@media screen and (max-width: 360px) {
  .content .mbrztab1 {
    padding-left: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .content .mbrztab1 {
    padding-left: 0;
  }
}
