/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/NotoSans-Regular.ttf);
}

@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/NotoSans-Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: 'Material Icons';
  src: url(../fonts/MaterialIcons-Regular.ttf);
}

@font-face {
  font-family: 'Material Symbols Rounded';
  src: url(../fonts/MaterialSymbolsRounded[FILL,GRAD,opsz,wght].ttf);
  font-variation-settings: "FILL" 1, "GRAD" 0, "opsz" 24, "wgth" 400;
}

/* Fonts */
:root {
  --default-font: "Noto Sans";
  --heading-font: "Noto Sans";
  --nav-font: "Noto Sans";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website 
   #ef3d59  PDFsharp red
*/
:root {
  /* Colors defined by Sigi */
  --e-accent-color: #ef3d59;
  --e-dark-accent-color: color-mix(in srgb, var(--e-accent-color), #000 45%);
  --e-steel-blue: #526d98;
  --e-steel-blue-light: color-mix(in srgb, var(--e-steel-blue), #fff 70%);
  --e-steel-blue-extralight: color-mix(in srgb, var(--e-steel-blue), #fff 85%);
  --e-steel-blue-highlight: #60a8dd;
  --e-dark-gray: #4e4e4e;
  --e-light-gray: #f4f4f4;
  --e-medium-gray: #bdbfc4;
  /* Template color variables */
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: var(--e-dark-gray);
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: var(--e-dark-gray);
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: var(--e-accent-color);
  /* 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: var(--e-light-gray);
  /* 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: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  /* empira color variables */
  --e-link-color: var(--e-accent-color);
  --e-default-dark-highlight-color: #333333;
  --e-textbox-border-color: #ebebeb;
  --e-textbox-label-color: #909090;
  --e-footer-font-size: 12pt;
}

.e-defaults {
  --background-color: #ffffff;
  --default-color: var(--e-dark-gray);
  --heading-color: var(--e-dark-gray);
  --accent-color: var(--e-accent-color);
  --surface-color: var(--e-light-gray);
  --contrast-color: #ffffff;
}

.e-red-area {
  --background-color: var(--e-accent-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: var(--e-dark-gray);
  --surface-color: var(--e-dark-gray);
  --contrast-color: #ffffff;
}

.e-blue-area {
  --background-color: var(--e-steel-blue);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: var(--e-dark-gray);
  --surface-color: var(--e-dark-gray);
  --contrast-color: #ffffff;
}

.e-dark-gray-area {
  --background-color: var(--e-dark-gray);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: var(--e-accent-color);
  --surface-color: var(--e-medium-gray);
  --contrast-color: #ffffff;
}

.e-light-gray-area {
  --background-color: var(--e-light-gray);
  --default-color: var(--e-dark-gray);
  --heading-color: var(--e-dark-gray);
  --accent-color: var(--e-accent-color);
  --surface-color: var(--e-medium-gray);
  --contrast-color: #ffffff;
}

.e-medium-gray-area {
  --background-color: var(--e-medium-gray);
  --default-color: var(--e-dark-gray);
  --heading-color: var(--e-dark-gray);
  --accent-color: var(--e-accent-color);
  --surface-color: var(--e-light-gray);
  --contrast-color: #ffffff;
}

/* 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 {
  /* Template color variables */
  --nav-color: var(--e-dark-gray);
  /* The default color of the main navmenu links */
  --nav-hover-color: var(--e-accent-color);
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: var(--background-color);
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: var(--background-color);
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: var(--e-dark-gray);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--e-accent-color);
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 1rem;
}

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

.main p {
  margin-bottom: 1rem;
}

.main h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.main h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.main h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.main h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.main h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.main h6 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.e-small-text {
  font-size: 1rem;
}

.e-small-text p {
  margin-bottom: 1rem;
}

.e-small-text h1 {
  font-size: 2rem;
  font-weight: normal;
  font-style: normal;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.e-small-text h2 {
  font-size: 1.2rem;
  font-weight: bold;
  font-style: normal;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.e-small-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.e-small-text h4 {
  font-size: 1.2rem;
  font-weight: normal;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.e-small-text h5 {
  font-size: 1rem;
  font-weight: bold;
  font-style: normal;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.e-small-text h6 {
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.e-small-text :is(h1, h2, h3, h4, h5, h6) + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 1.5rem;
}

:is(p, h1, h2, h3, h4, h5, h6, ul, ol, li):not(.keep-margins):first-child {
  margin-top: 0 !important;
}

:is(p, h1, h2, h3, h4, h5, h6, ul, ol, li):not(.keep-margins):last-child {
  margin-bottom: 0 !important;
}

.e-superscript {
  vertical-align: super;
  font-size: .83em;
}

ul, ol {
  padding-left: 1rem;
}

.notes-list {
  list-style-type: none;
}

.notes-list li {
  counter-increment: customlistcounter;
  text-indent: -1rem;
}

.notes-list li::before {
  content: counter(customlistcounter) " ";
  vertical-align: super;
  font-size: smaller;
  line-height: normal;
  float: left;
  width: 1rem;
}

.notes-list first-child {
  counter-reset: customlistcounter;
}

.e-text-contact {
  margin-bottom: 2rem;
}

.e-text-contact p {
  font-size: 1.15rem;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.product-flavor {
  font-weight: bold;
}

a {
  color: var(--e-link-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--e-link-color), #fff 25%);
  text-decoration: none;
}

a.hidden-link {
  color: var(--default-color);
}

button {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: normal;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

button:hover {
  background: color-mix(in srgb, var(--accent-color), #fff 25%);
}

.e-btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.e-btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), #fff 25%);
  color: var(--contrast-color);
}

.e-btn-light {
  background: var(--e-light-gray);
  color: var(--default-color);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.e-btn-light:hover {
  background: color-mix(in srgb, var(--e-light-gray), #000 7%);
  color: var(--default-color);
}

.e-btn-dark {
  background: var(--e-dark-gray);
  color: var(--contrast-color);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.e-btn-dark:hover {
  background: color-mix(in srgb, var(--e-dark-gray), #fff 25%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.header .logo .header-logo-pdfsharp {
  height: 60px;
  margin-top: -5px;
  margin-right: 10px;
}

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

.header .header-langinfo {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  margin: -10px auto;
  /* Don't let header vertically grow, when shown in three lines; center horizontally. */
  padding: 0 25px;
}

@media (max-width: 575px) {
  .header .header-langinfo {
    display: none;
    /* Hide on x-small screen. */
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .header-langinfo {
    order: 2;
  }
  .header .menuButtons {
    order: 3;
    margin-left: 15px;
    margin-right: 25px;
  }
  .header .navmenu {
    order: 4;
  }
}

@media (max-width: 450px) {
  .header .logo .header-logo-pdfsharp {
    height: 40px;
  }
  .header .logo h1 {
    font-size: 20px;
  }
  .header .menuButtons {
    margin-right: 15px;
  }
  .header .menuButtons a {
    font-size: 14px;
  }
}

.scrolled .header {
  border-color: var(--contrast-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.menuButtons {
  margin-left: 35px;
}

.menuButtons a {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 1px;
  margin-left: 25px;
  padding: 11px 15px;
  border-radius: 5px;
  transition: 0.3s;
  white-space: nowrap;
}

.menuButtons a:hover {
  background: color-mix(in srgb, var(--accent-color), #fff 25%);
  color: var(--contrast-color);
}

.menuButtons a:first-child {
  margin-left: 0;
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .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);
    margin: 0 0 5px 0;
    padding: 18px 15px 10px 15px;
    font-size: 16px;
    line-height: 22px;
    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 {
    margin-right: -15px;
  }
  .navmenu li:hover > a,
.navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .active {
    box-shadow: inset 0px -4px 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;
    line-height: 20px;
    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 ul .active {
    box-shadow: inset 6px 0 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 - Mobile */
@media (max-width: 1199px) {
  .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;
    line-height: 22px;
    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:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active {
    box-shadow: inset 6px 0 var(--nav-dropdown-hover-color);
  }
  .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 .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;
  }
}

/*--------------------------------------------------------------
# Menu icons
--------------------------------------------------------------*/
.home-icon {
  text-align: center;
  font-family: 'Material Icons';
  font-size: 20pt;
  margin-top: -2px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--e-light-gray);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: var(--e-footer-font-size);
  margin-top: auto;
  padding-bottom: 30px;
  position: relative;
}

.footer h4 {
  font-size: var(--e-footer-font-size);
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0;
}

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

.footer .footer-about {
  padding-right: 30px;
}

.footer .footer-about .footer-logos {
  margin-left: -12px;
  margin-bottom: 20px;
}

.footer .footer-about .footer-logos .footer-logo-pdfsharp {
  height: 40px;
  margin-top: -10px;
  margin-right: 5px;
}

.footer .footer-about .footer-logos .footer-logo-migradoc {
  height: 50px;
  margin-top: -15px;
  margin-right: 5px;
}

.footer .footer-about .footer-logos .footer-product-title {
  font-size: var(--e-footer-font-size);
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 15px;
}

.footer .footer-about p {
  font-family: var(--heading-font);
  margin-bottom: 1em;
}

.footer .footer-links ul {
  list-style-type: '> ';
  padding: 0;
  margin: 0;
  padding-inline-start: 1em;
}

.footer .footer-links ul i {
  padding-right: 2px;
  line-height: 0;
}

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

.footer .footer-links ul a {
  color: var(--default-color);
  font-weight: normal;
}

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

.footer .footer-links .footer-links-icons {
  display: flex;
  height: 48px;
  margin-left: 8px;
}

.footer .footer-links .footer-links-icons a {
  display: flex;
  align-items: end;
  color: var(--default-color);
  transition: 0.3s;
}

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

.footer .footer-links .footer-links-icons .bi-house {
  font-size: 25px;
  transform: translateY(1px);
  margin-right: 20px;
}

.footer .footer-links .footer-links-icons .bi-envelope {
  font-size: 26px;
  transform: translateY(3px);
  margin-right: 10px;
}

.footer .footer-links .footer-links-icons .bi-twitter-x {
  font-size: 22px;
  margin-right: 10px;
}

.footer .footer-links .footer-links-icons .bi-linkedin {
  font-size: 20px;
  transform: translateY(-1px);
}

.footer .footer-column-mb {
  margin-bottom: 15px;
}

.footer .copyright hr {
  margin: 15px 0 30px 0;
}

.footer .copyright p {
  margin-left: 1.1rem;
  text-indent: -1.1rem;
}

.footer .copyright .copyright-link::before {
  content: "\00a0\00a0|\00a0\00a0\00a0";
}

@media (max-width: 575px) {
  .footer .copyright .copyright-link::before {
    content: "\a";
    white-space: pre;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .footer .copyright .copyright-link::before {
    content: "\00a0\00a0|\00a0\00a0\00a0";
  }
  .footer .copyright .copyright-link:first-child::before {
    content: "\a";
    white-space: pre;
  }
}

.footer .copyright a {
  color: var(--default-color);
  font-weight: normal;
  text-wrap-mode: nowrap;
}

.footer .copyright a:hover {
  color: var(--accent-color);
}

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

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

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

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

.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), #fff 25%);
  color: var(--contrast-color);
}

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

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

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

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

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

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.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
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

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

@media (min-width: 576px) {
  .e-narrow-containers .container, .e-narrow-containers .container-sm {
    max-width: 490px;
  }
}

@media (min-width: 768px) {
  .e-narrow-containers .container, .e-narrow-containers .container-md, .e-narrow-containers .container-sm {
    max-width: 620px;
  }
}

@media (min-width: 992px) {
  .e-narrow-containers .container, .e-narrow-containers .container-lg, .e-narrow-containers .container-md, .e-narrow-containers .container-sm {
    max-width: 810px;
  }
}

@media (min-width: 1200px) {
  .e-narrow-containers .container, .e-narrow-containers .container-lg, .e-narrow-containers .container-md, .e-narrow-containers .container-sm, .e-narrow-containers .container-xl {
    max-width: 940px;
  }
}

@media (min-width: 1400px) {
  .e-narrow-containers .container, .e-narrow-containers .container-lg, .e-narrow-containers .container-md, .e-narrow-containers .container-sm, .e-narrow-containers .container-xl, .e-narrow-containers .container-xxl {
    max-width: 1120px;
  }
}

.e-accent-font {
  color: var(--accent-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.e-pre-heading {
  color: var(--accent-color);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.e-heading-line {
  border-top: 4px solid var(--default-color);
  opacity: 1;
  max-width: 100px;
  margin: 0;
}

.e-heading-line + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 20px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title-center {
  margin-bottom: 1rem;
  text-align: center;
}

.section-title-center .section-intro {
  margin-bottom: 30px;
}

.section-title-center .e-heading-line {
  margin: 0 auto 0 auto;
}

/*--------------------------------------------------------------
# Hero Section 
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 60px 0 60px 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero {
    padding-bottom: 90px;
  }
}

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

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

.hero .container .hero-col h1 {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
}

.hero .container .hero-col h2 {
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .hero .container .hero-col h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

.hero .container .hero-col-offers {
  padding: 0;
  display: flex;
  --hero-offer-top: 20px;
  --hero-offer-left: 20px;
  --hero-offer-width: calc(100% - 40px);
  --hero-offer-rotation: -3deg;
  --hero-offer2-top: 30px;
  --hero-offer2-left: 20px;
  --hero-offer2-width: calc(100% - 40px);
  --hero-offer2-rotation: -2.25deg;
  --hero-pdfsharp-top: 40px;
  --hero-pdfsharp-left: calc(10% + (100vw - 350px) / 3);
  --hero-pdfsharp-width: min(calc(85%), 270px);
  --hero-pdfsharp-rotation: -1.5deg;
  --hero-pdfsharp-icon-font-size: 40px;
  --hero-col-offers-margin-bottom: 10px;
  --hero-offer-font-size: 21px;
  --hero-offer-star-size: 75px;
  --hero-offer2-icon-font-size: 40px;
}

@media (min-width: 480px) {
  .hero .container .hero-col-offers {
    --hero-offer-width: calc(48% - 20px);
    --hero-offer2-top: calc(-98px + (100vw - 480px) / 20);
    --hero-offer2-left: 48%;
    --hero-offer2-width: calc(52% - 20px);
    --hero-offer2-rotation: -3deg;
    --hero-pdfsharp-top: -75px;
    --hero-col-offers-margin-bottom: -100px;
  }
}

@media (min-width: 576px) {
  .hero .container .hero-col-offers {
    --hero-offer2-top: -91px;
    --hero-pdfsharp-left: calc(137px + (100vw - 576px) / 6);
  }
}

@media (min-width: 768px) {
  .hero .container .hero-col-offers {
    --hero-offer-top: 30px;
    --hero-offer-left: calc(0px + (100vw - 768px) / 16);
    --hero-offer-width: 210px;
    --hero-offer2-top: 10px;
    --hero-offer2-left: calc(20% + (100vw - 768px) / 4);
    --hero-offer2-width: 80%;
    --hero-offer2-rotation: -2.25deg;
    --hero-pdfsharp-top: 20px;
    --hero-pdfsharp-left: calc(10px + (100vw - 768px) / 8);
    --hero-pdfsharp-width: 250px;
    --hero-pdfsharp-icon-font-size: 28px;
    --hero-offer2-icon-font-size: 28px;
  }
}

@media (min-width: 992px) {
  .hero .container .hero-col-offers {
    --hero-offer-left: calc(-60px + (100vw - 768px) / 16);
    --hero-offer-width: 80%;
    --hero-offer2-top: 25px;
    --hero-offer2-left: calc(30px + (100vw - 992px) / 4);
    --hero-offer2-width: 80%;
    --hero-pdfsharp-top: 40px;
    --hero-pdfsharp-left: calc(-30px + (100vw - 992px) / 8);
    --hero-pdfsharp-width: max(300px, 80%);
    --hero-pdfsharp-icon-font-size: 40px;
    --hero-offer-font-size: 24px;
    --hero-offer-star-size: 100px;
    --hero-offer2-icon-font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .hero .container .hero-col-offers {
    --hero-offer-top: 28px;
    --hero-offer-left: 32px;
    --hero-offer2-top: calc(27px - (100vw - 1200px) / 20);
    --hero-offer2-left: calc(22px + (100vw - 1200px) / 3);
    --hero-offer2-width: 100%;
    --hero-pdfsharp-top: 40px;
    --hero-pdfsharp-left: calc(65px + (100vw - 1200px) / 6);
    --hero-pdfsharp-width: 80%;
  }
}

@media (min-width: 1400px) {
  .hero .container .hero-col-offers {
    --hero-offer-top: 24px;
    --hero-offer-left: calc(124px + (100vw - 1400px) / -8);
    --hero-offer2-top: calc(19px - (100vw - 1400px) / 8);
    --hero-offer2-left: calc(10px + (100vw - 1400px) / 3);
    --hero-pdfsharp-left: 115px;
    --hero-pdfsharp-width: calc(370px + (100vw - 1400px) / 6);
  }
}

@media (min-width: 1640px) {
  .hero .container .hero-col-offers {
    --hero-offer-top: 24px;
    --hero-offer-left: 94px;
    --hero-offer2-top: -11px;
    --hero-offer2-left: 90px;
    --hero-pdfsharp-left: 115px;
    --hero-pdfsharp-width: 410px;
  }
}

.hero .container .hero-col-offers .hero-col-offers-inner {
  position: relative;
  width: 100%;
  margin-bottom: var(--hero-col-offers-margin-bottom);
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer {
  position: relative;
  top: var(--hero-offer-top);
  left: var(--hero-offer-left);
  width: var(--hero-offer-width);
  transform: rotate(var(--hero-offer-rotation));
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer .hero-offer-star {
  position: relative;
  left: calc(var(--hero-offer-star-size) / 4);
  width: var(--hero-offer-star-size);
  height: var(--hero-offer-star-size);
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer .hero-offer-star .hero-offer-star-background {
  position: relative;
  z-index: 1;
  height: var(--hero-offer-star-size);
  fill: var(--accent-color);
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer .hero-offer-star .hero-text-new {
  position: relative;
  top: calc(0px - var(--hero-offer-star-size));
  z-index: 3;
  width: var(--hero-offer-star-size);
  height: var(--hero-offer-star-size);
  line-height: var(--hero-offer-star-size);
  font-size: calc(var(--hero-offer-star-size) / 3.5);
  text-align: center;
  font-weight: bold;
  color: var(--contrast-color);
  transform: translate(calc(var(--hero-offer-star-size) / -30), calc(var(--hero-offer-star-size) / -30));
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer .hero-offer-text {
  font-size: var(--hero-offer-font-size);
  font-weight: bold;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer2 {
  position: relative;
  top: var(--hero-offer2-top);
  left: var(--hero-offer2-left);
  width: var(--hero-offer2-width);
  transform: rotate(var(--hero-offer2-rotation));
  text-align: right;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer2 .hero-offer2-icon {
  position: relative;
  left: calc(var(--hero-offer2-icon-font-size) / 4);
  margin-right: 30px;
  font-family: 'Material Symbols Rounded';
  font-variation-settings: "FILL" 0;
  font-size: var(--hero-offer2-icon-font-size);
  line-height: calc(var(--hero-offer2-icon-font-size) * 0.8);
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer2 .hero-offer2-icon a {
  color: var(--default-color);
  font-weight: 400;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-offer2 .hero-offer-text {
  font-size: var(--hero-offer-font-size);
  font-weight: bold;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-pdfsharp {
  position: relative;
  top: var(--hero-pdfsharp-top);
  left: var(--hero-pdfsharp-left);
  width: var(--hero-pdfsharp-width);
  transform: rotate(var(--hero-pdfsharp-rotation));
  font-size: var(--hero-offer-font-size);
  font-weight: bold;
  text-align: right;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-pdfsharp .hero-pdfsharp-icons {
  position: relative;
  top: 0.4em;
  margin-left: 0.5em;
  margin-right: 1.75em;
  color: var(--default-color);
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-pdfsharp .hero-pdfsharp-icons span {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: "FILL" 0;
  font-size: var(--hero-pdfsharp-icon-font-size);
  font-weight: 450;
}

.hero .container .hero-col-offers .hero-col-offers-inner .hero-pdfsharp .hero-pdfsharp-icons svg {
  height: 1.6em;
  margin-top: -1.1em;
  fill: var(--default-color);
}

/*--------------------------------------------------------------
# Dummy Section 
--------------------------------------------------------------*/
.e-dummy {
  width: 100%;
  background-color: yellowgreen;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
  overflow: hidden;
}

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

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

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

.e-dummy h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 72px;
}

.e-dummy p {
  margin: 10px 0 0 0;
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .e-dummy h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .e-dummy p {
    font-size: 18px;
    line-height: 24px;
  }
}

.e-dummy .icon-box {
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.e-dummy .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.e-dummy .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.e-dummy .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.e-dummy .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-color);
}

@media (min-width: 640px) {
  .e-dummy .icon-box:hover {
    transform: scale(1.08);
  }
  .e-dummy .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services focus Section 
--------------------------------------------------------------*/
.e-services-focus {
  width: 100%;
  background-color: var(--accent-color);
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 30px 0 30px 0;
  overflow: hidden;
}

.e-services-focus .container {
  position: relative;
  z-index: 3;
}

.e-services-focus ul {
  padding-left: 3.25rem;
}

.e-services-focus ul li {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  color: white;
  list-style-type: none;
}

.e-services-focus ul li::before {
  content: "\e86b";
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0;
  font-size: 1.75em;
  line-height: 0;
  position: relative;
  top: 0.6em;
  left: -3.25rem;
  transform: translate(0.4em, -0.5em) rotate(90deg);
  display: inline-block;
  width: 0;
}

@media (max-width: 992px) {
  .e-services-focus h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .e-services-focus p {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 90px 0 90px 0;
}

.services .service-item {
  background-color: var(--e-steel-blue);
  height: 100%;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0 -10px 15px -10px;
  font-size: 22px;
  color: white;
}

.services .service-item h3 .service-item-subheading {
  font-size: 15px;
  font-weight: bold;
}

.services .service-item h3 .service-item-subheading::before {
  content: "\a";
  white-space: pre;
}

.services .service-item p {
  font-size: 15px;
  margin-bottom: 0;
  color: white;
}

.services .service-item .service-bottom {
  margin-top: auto;
}

.services .service-item-highlighted {
  box-shadow: inset 0 0 0 8px var(--e-steel-blue-highlight);
  background: radial-gradient(farthest-side at bottom right, var(--e-steel-blue) 80%, var(--e-steel-blue-highlight)) top 7px left 7px, radial-gradient(farthest-side at top right, var(--e-steel-blue) 80%, var(--e-steel-blue-highlight)) bottom 7px left 7px, radial-gradient(farthest-side at bottom left, var(--e-steel-blue) 80%, var(--e-steel-blue-highlight)) top 7px right 7px, radial-gradient(farthest-side at top left, var(--e-steel-blue) 80%, var(--e-steel-blue-highlight)) bottom 7px right 7px, var(--e-steel-blue);
  background-size: 7px 7px;
  background-repeat: no-repeat;
  background-origin: padding-box;
}

/*--------------------------------------------------------------
# PDFsharp focus Section 
--------------------------------------------------------------*/
.e-pdfsharp-focus {
  padding: 0 0 40px;
}

.e-pdfsharp-focus .e-pdfsharp-focus-title {
  background-color: var(--e-steel-blue-extralight);
  padding: 40px 0 40px;
  --pdfsharp-focus-logos-inner-margin: max(15px, min(30px, calc((100vw - 420px) / 2)));
  --pdfsharp-focus-logos-outer-margin: max(0px, min(30px, calc((100vw - 420px) / 2)));
  --pdfsharp-focus-logos-p-margin: max(0px, min(45px, calc((100vw - 420px) / 2)));
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line p {
  width: calc(100% - 20px);
}

@media (min-width: 768px) {
  .e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line p {
    width: 63%;
  }
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line .video-icon {
  height: 1.5em;
  margin-top: -0.2em;
  fill: var(--default-color);
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line-pdfsharp p {
  margin-right: var(--pdfsharp-focus-logos-p-margin);
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line-migradoc {
  flex-direction: row-reverse;
  text-align: right;
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-line-migradoc p {
  margin-left: var(--pdfsharp-focus-logos-p-margin);
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-pdfsharp {
  height: 55px;
  margin: 8px var(--pdfsharp-focus-logos-inner-margin) 8px var(--pdfsharp-focus-logos-outer-margin);
}

.e-pdfsharp-focus .e-pdfsharp-focus-title .logo-migradoc {
  height: 60px;
  margin: 5px var(--pdfsharp-focus-logos-outer-margin) 5px var(--pdfsharp-focus-logos-inner-margin);
}

.e-pdfsharp-focus .e-pdfsharp-focus-bar {
  width: 100%;
  background-color: var(--accent-color);
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 30px 0 30px 0;
  overflow: hidden;
}

.e-pdfsharp-focus .e-pdfsharp-focus-bar .container {
  position: relative;
  z-index: 3;
}

.e-pdfsharp-focus .e-pdfsharp-focus-bar ul {
  padding-left: 3.25rem;
}

.e-pdfsharp-focus .e-pdfsharp-focus-bar ul li {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  color: white;
  list-style-type: none;
}

.e-pdfsharp-focus .e-pdfsharp-focus-bar ul li::before {
  content: "\e86b";
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0;
  font-size: 1.75em;
  line-height: 0;
  position: relative;
  top: 0.6em;
  left: -3.25rem;
  transform: translate(0.4em, -0.5em) rotate(90deg);
  display: inline-block;
  width: 0;
}

@media (max-width: 992px) {
  .e-pdfsharp-focus .e-pdfsharp-focus-bar h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .e-pdfsharp-focus .e-pdfsharp-focus-bar p {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.e-intro {
  width: 100%;
  background-color: var(--e-dark-gray);
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 90px 0 80px 0;
  overflow: hidden;
}

.e-intro .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.e-intro .icon-box {
  background-color: color-mix(in srgb, var(--surface-color), transparent 25%);
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.e-intro .icon-box .icon-header {
  display: flex;
  flex-wrap: wrap;
}

.e-intro .icon-box .icon-header .icon-header-icon .logo-pdfsharp {
  height: 70px;
  margin: -10px 30px 35px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .e-intro .icon-box .icon-header .icon-header-icon .logo-pdfsharp {
    margin-right: 10px;
  }
}

.e-intro .icon-box .icon-header .icon-header-icon .logo-migradoc {
  height: 85px;
  margin: -20px 30px 30px 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .e-intro .icon-box .icon-header .icon-header-icon .logo-migradoc {
    margin-right: 10px;
  }
}

.e-intro .icon-box .icon-header .icon-header-header {
  flex: 1 1 50px;
}

.e-intro .icon-box .icon-header .icon-header-header h4 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
}

.e-intro .icon-box .icon-header .icon-header-header h4 a {
  color: var(--default-color);
}

.e-intro .icon-box .description-intro {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.e-intro .icon-box .description-bold {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.e-intro .icon-box .description {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.e-intro .icon-box .intro-bottom {
  margin-top: auto;
}

.e-intro .video-box .video-box-heading {
  display: inline-block;
  background-color: color-mix(in srgb, var(--surface-color), transparent 25%);
  padding: 12px 20px;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
}

.e-intro .video-box .video-box-heading h4 {
  font-size: 16px;
  font-weight: bold;
}

.e-intro .video-box video {
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Counters Section
--------------------------------------------------------------*/
.counters {
  background-color: #fff;
  padding: 90px 0;
}

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

.counters .stats-item p {
  color: var(--accent-color);
  padding: 0;
  margin: 0 0 15px 0;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: bold;
}

.counters .stats-item .stats-count {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
}

.counters .stats-item .stats-count-long-value {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .counters .stats-item .stats-count-long-value {
    font-size: 30px;
    padding-top: 8px;
  }
}

.counters .grid-divider {
  overflow-x: hidden;
  position: relative;
}

.counters .grid-divider > [class*="col-"] {
  content: "";
  position: relative;
}

.counters .grid-divider > [class*="col-"]:nth-child(n + 2)::after {
  content: "";
  background-color: var(--default-color);
  position: absolute;
  top: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .counters .grid-divider > [class*="col-"]:nth-child(n + 2)::after {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 3px;
    top: -4px;
    left: 0;
    right: 0;
  }
}

@media (min-width: 992px) {
  .counters .grid-divider > [class*="col-"]:nth-child(n + 2)::after {
    width: 3px;
    height: auto;
    left: -1px;
    top: 50px;
    bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Donation Section
--------------------------------------------------------------*/
.donation {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.donation h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

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

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  background-color: #fff;
  padding: 90px 0 120px 0;
}

.faq .faq-row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.faq .faq-row .faq-container .faq-item {
  background-color: var(--e-light-gray);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq .faq-row .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-row .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-row .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-row .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-row .faq-container .faq-item .faq-content .faq-content-inner {
  overflow: hidden;
}

.faq .faq-row .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-row .faq-container .faq-item .faq-toggle:hover h3 {
  color: var(--accent-color);
}

.faq .faq-row .faq-container .faq-active {
  background-color: var(--e-steel-blue-light);
}

.faq .faq-row .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-row .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq .faq-row .faq-container .faq-active:hover h3 {
  color: var(--e-default-dark-highlight-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background-color: var(--background-color);
  padding: 60px 0 40px 0;
  position: relative;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: normal;
}

.call-to-action .action-icon {
  text-align: center;
  font-family: 'Material Symbols Rounded';
  font-variation-settings: "FILL" 0;
  font-size: 30pt;
  color: var(--default-color);
  transform: rotate(180deg);
}

.call-to-action .e-btn-accent {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Contact Form Section 
--------------------------------------------------------------*/
.contact-form .contact-form-form .row {
  --bs-gutter-x: 15px;
}

.contact-form .contact-form-form .contact-form-element {
  padding-bottom: 18px;
}

.contact-form .contact-form-form input.contact-form-control[type="email"],
.contact-form .contact-form-form input.contact-form-control[type="text"],
.contact-form .contact-form-form textarea.contact-form-control {
  padding: 15px;
  background-color: var(--e-light-gray);
  border-color: var(--e-textbox-border-color);
  border-width: 2px;
}

.contact-form .contact-form-form input.contact-form-control[type="email"]::placeholder,
.contact-form .contact-form-form input.contact-form-control[type="text"]::placeholder,
.contact-form .contact-form-form textarea.contact-form-control::placeholder {
  color: var(--e-textbox-label-color);
}

.contact-form .contact-form-form .meta-textbox {
  background-color: #fff !important;
  border-color: var(--e-dark-gray) !important;
}

.contact-form .contact-form-form input.contact-form-control[type="checkbox"] {
  margin-right: 5px;
  padding: 15px;
  border-color: var(--e-dark-gray);
  border-width: 2px;
}

.contact-form .contact-form-form .contact-form-checkbox-label-div {
  display: inline-block;
  padding-top: 9px;
}

.contact-form .contact-form-form .contact-form-text {
  margin-bottom: 18px;
}

.contact-form .contact-form-form .contact-form-validation {
  margin-left: 15px;
}

.contact-form .contact-form-form .contact-form-validation:empty {
  margin-left: 0;
}

.contact-form .contact-form-form .contact-form-required {
  color: red;
}

.contact-form .contact-form-x {
  display: none;
}

.contact-form .contact-form-confirmation-label {
  font-weight: bold;
}

.contact-form .contact-form-confirmation-message {
  white-space: pre-wrap;
}

/*--------------------------------------------------------------
# Cookie Consent & Cookie Manage Sections
--------------------------------------------------------------*/
#e-cookie-container {
  background-color: #fff;
}

.cookie-consent {
  padding: 30px;
  background-color: var(--e-light-gray);
}

.cookie-consent.cookie-consent-banner {
  margin: 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.5);
}

.cookie-consent.cookie-manage-banner {
  margin: 30px 0 0 0;
  border-radius: 10px;
}

.cookie-consent .cookie-icon {
  text-align: center;
  font-family: 'Material Icons';
  font-size: 45pt;
  color: var(--accent-color);
  margin-top: -20px;
}

.cookie-consent .cookie-consent-text {
  width: 100%;
  text-align: center;
}

.cookie-consent .cookie-consent-text h1 {
  font-size: 14pt;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cookie-consent .cookie-consent-text p {
  margin: 15px 0 15px 0;
  font-size: 10pt;
}

.cookie-consent .cookie-consent-buttons {
  margin-top: 35px;
  text-align: center;
}

/*--------------------------------------------------------------
# PDFsharp and MigraDoc pages sections
--------------------------------------------------------------*/
.e-product-intro {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.e-product-intro .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.e-product-intro .container {
  position: relative;
  z-index: 3;
}

.e-product-intro .intro-box-container {
  margin-top: 40px;
}

.e-product-intro .intro-box-container .intro-box {
  background-color: var(--background-color);
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.e-product-intro .intro-box-container .intro-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.e-product-accent {
  background-color: var(--background-color);
  padding: 40px 0 40px 0;
}

.e-product-technical {
  padding: 40px 0 0 0;
  font-weight: bold;
  text-align: center;
}

.e-product-features {
  background-color: #fff;
  padding: 90px 0 60px 0;
}

.e-product-features .list-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.e-product-features .list-row:last-child {
  margin-bottom: 0;
}

.e-product-features .list-row ul {
  margin: 0;
  padding: 0;
}

.e-product-features .list-row ul li {
  margin: 0 0 8px 0;
  padding: 0 30px 0 4.25rem;
  min-height: 62.5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2em;
  list-style-type: none;
}

.e-product-features .list-row ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 2.2em;
  font-weight: normal;
  position: relative;
  top: 0.4em;
  left: -4.25rem;
  display: inline-block;
  width: 0;
}

.e-product-features-accent {
  padding: 50px 0 50px 0;
}

.e-product-features-accent ul {
  margin: 0;
}

.e-product-features-accent ul li {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5em;
}

.e-product-faq {
  padding: 50px 0 120px 0;
}

.e-product-faq .faq-row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.e-product-faq .faq-row .faq-container .faq-item {
  background-color: var(--e-light-gray);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.e-product-faq .faq-row .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.e-product-faq .faq-row .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.e-product-faq .faq-row .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.e-product-faq .faq-row .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.e-product-faq .faq-row .faq-container .faq-item .faq-content .faq-content-inner {
  overflow: hidden;
}

.e-product-faq .faq-row .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
  cursor: pointer;
}

.e-product-faq .faq-row .faq-container .faq-item .faq-toggle:hover h3 {
  color: var(--accent-color);
}

.e-product-faq .faq-row .faq-container .faq-active {
  background-color: var(--e-steel-blue-light);
}

.e-product-faq .faq-row .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.e-product-faq .faq-row .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

.e-product-faq .faq-row .faq-container .faq-active:hover h3 {
  color: var(--e-default-dark-highlight-color);
}

/*--------------------------------------------------------------
# Use cases page sections
--------------------------------------------------------------*/
.e-use-cases-heading {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 80px 0 40px 0;
  overflow: hidden;
}

.e-use-cases-heading .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.e-use-cases-heading .container {
  position: relative;
  z-index: 3;
}

.e-use-cases-intro {
  padding: 50px 0 50px 0;
}

.e-use-cases-presentation {
  padding: 50px 0 25px 0;
}

.e-use-cases-showcase {
  padding: 25px 17% 50px 17%;
}

.e-use-cases-showcase .showcase-container .row {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;
}

.e-use-cases-showcase .showcase-container .showcase-item img {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Offers page sections
--------------------------------------------------------------*/
.e-offers-intro {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 80px 0 35px 0;
  overflow: hidden;
}

.e-offers-intro .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.e-offers-intro .container {
  position: relative;
  z-index: 3;
}

.e-offers-intro .star-icons {
  font-family: 'Material Icons';
  font-size: 20pt;
  color: var(--accent-color);
}

.e-offers-intro .intro-buttons {
  margin: 12px 0 0 0;
}

.e-offers-intro .intro-buttons .e-btn-accent {
  background: var(--e-steel-blue);
  margin: 8px 5px 0 0;
}

.e-offers-intro .intro-buttons .e-btn-accent:hover {
  background: color-mix(in srgb, var(--e-steel-blue), #fff 25%);
}

.e-offers-psx-intro {
  padding: 50px 0 10px 0;
}

.e-offers-psx-intro .section-title-center > * {
  font-weight: bold;
}

.e-offers-psx-intro .offers-psx-intro-text-block {
  margin-top: 20px;
  margin-bottom: 30px;
}

.e-offers-psx-solutions {
  width: 100%;
  background-color: var(--e-dark-gray);
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 50px 0 50px 0;
  overflow: hidden;
}

.e-offers-psx-solutions .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.e-offers-psx-solutions .container {
  position: relative;
  z-index: 3;
}

.e-offers-psx-solutions .icon-box {
  background-color: color-mix(in srgb, var(--surface-color), transparent 25%);
  padding: 30px 30px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.e-offers-psx-solutions .icon-box .icon-header {
  display: flex;
  flex-wrap: wrap;
}

.e-offers-psx-solutions .icon-box .icon-header .icon-header-icon .logo-pdfsharp {
  height: 40px;
  margin: 4px 10px 15px -11px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .e-offers-psx-solutions .icon-box .icon-header .icon-header-icon .logo-pdfsharp {
    margin-right: 10px;
  }
}

.e-offers-psx-solutions .icon-box .icon-header .icon-header-header {
  flex: 1 1 50px;
}

.e-offers-psx-solutions .icon-box .icon-header .icon-header-header h4 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
}

.e-offers-psx-solutions .icon-box .icon-header .icon-header-header h4 a {
  color: var(--default-color);
}

.e-offers-psx-solutions .icon-box .description {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.e-offers-psx-solutions .icon-box ul {
  margin: 0 0 30px 5px;
  padding: 0;
  text-align: left;
}

.e-offers-psx-solutions .icon-box ul li {
  margin: 0 0 5px 0;
  padding: 0 30px 0 1.8rem;
  font-size: 16px;
  line-height: 1.5em;
  list-style-type: none;
}

.e-offers-psx-solutions .icon-box ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.2em;
  left: -1.8rem;
  display: inline-block;
  width: 0;
}

.e-offers-psx-contact {
  padding: 50px 0 50px 0;
}

.e-offers-psx-contact .e-btn-accent {
  display: block;
  width: 150px;
  margin: 30px auto 0 auto;
}

.e-offers-document-service {
  background-color: var(--e-steel-blue-extralight);
  padding: 60px 0 20px 0;
}

.e-offers-document-service .section-title-center > * {
  font-weight: bold;
}

.e-offers-document-service h3 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.e-offers-document-service h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 1.3em;
  margin-bottom: 0.2em;
}

.e-offers-document-service .document-service-text-block {
  margin-top: 20px;
  margin-bottom: 30px;
}

.e-offers-document-service .document-service-list-wrapper {
  display: flex;
  justify-content: center;
  text-align: start;
}

.e-offers-document-service .list-row {
  padding: 30px 0 0;
  text-align: center;
}

.e-offers-document-service .list-row .document-service-list-col {
  padding: 0 30px 30px;
}

.e-offers-document-service .list-row .document-service-list-col ul {
  margin: 0 0 30px;
  padding: 0;
  text-align: start;
}

.e-offers-document-service .list-row .document-service-list-col ul li {
  margin: 0 0 8px 0;
  padding: 0 0 0 3rem;
  line-height: 1.2em;
  list-style-type: none;
}

.e-offers-document-service .list-row .document-service-list-col ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 1.8em;
  font-weight: normal;
  position: relative;
  top: 0.3em;
  left: -3rem;
  display: inline-block;
  width: 0;
}

.e-offers-document-service .list-row .document-service-list-col ol {
  margin: 0 0 30px;
  padding: 0;
  text-align: start;
}

.e-offers-document-service .list-row .document-service-list-col ol li {
  margin: 0 0 8px 0;
  padding: 0 0 0 3rem;
  line-height: 1.2em;
  list-style-type: none;
}

.e-offers-document-service .list-row .document-service-list-col ol li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 1.8em;
  font-weight: normal;
  position: relative;
  top: 0.32em;
  left: -3rem;
  display: inline-block;
  width: 0;
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(1)::before {
  content: "\f784";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(2)::before {
  content: "\f783";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(3)::before {
  content: "\f782";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(4)::before {
  content: "\f781";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(5)::before {
  content: "\f780";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(6)::before {
  content: "\f77f";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(7)::before {
  content: "\f77e";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(8)::before {
  content: "\f77d";
}

.e-offers-document-service .list-row .document-service-list-col ol li:nth-child(9)::before {
  content: "\f77c";
}

.e-offers-document-service .e-btn-accent {
  display: block;
  width: 150px;
  margin: 30px auto 10px auto;
}

.e-offers-contract-work {
  background-color: #fff;
  padding: 60px 0 60px 0;
}

.e-offers-contract-work .section-title > * {
  font-weight: bold;
}

.e-offers-contract-work [class*="col-"] img {
  max-width: 100%;
  padding-right: 20px;
}

.e-offers-contract-work .intro-row .section-title {
  margin-top: 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .e-offers-contract-work .intro-row .section-title {
    margin-top: 0;
  }
}

.e-offers-contract-work .list-row {
  margin-top: 5px;
}

.e-offers-contract-work .list-row .list-box {
  background-color: #fff;
  padding: 45px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}

.e-offers-contract-work .list-row .list-box ul {
  margin: 0;
  padding: 0;
}

.e-offers-contract-work .list-row .list-box ul li {
  margin: -2px 0 0 0;
  padding: 0 30px 10px 4rem;
  position: relative;
  min-height: 62.5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2em;
  list-style-type: none;
}

.e-offers-contract-work .list-row .list-box ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 2.2em;
  font-weight: normal;
  color: var(--e-steel-blue);
  position: relative;
  top: 0.4em;
  left: -4rem;
  display: inline-block;
  width: 0;
}

.e-offers-contract-work .list-row .list-box ul li::after {
  content: "";
  background: var(--default-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  margin-left: 4rem;
  margin-right: 20px;
}

.e-offers-contract-work .list-row .list-box ul li:last-child {
  padding-bottom: 0;
}

.e-offers-contract-work .list-row .list-box ul li:last-child::after {
  visibility: collapse;
}

.e-offers-contract-work .contact-row {
  margin-top: 60px;
}

.e-offers-license-model {
  width: 100%;
  padding: 20px 0 0 0;
}

.e-offers-license-model .section-title-center > * {
  font-weight: bold;
}

.e-offers-license-model .offers-psx-intro-text-block {
  margin-top: 20px;
  margin-bottom: 30px;
}

.e-offers-license-model-image {
  width: 100%;
  padding: 0 0 70px 0;
  overflow: scroll;
}

.e-offers-license-model-image .offers-license-model-image-inner {
  margin-top: 50px;
  min-width: 600px;
  position: relative;
}

@media (max-width: 767px) {
  .e-offers-license-model-image .offers-license-model-image-inner .container {
    max-width: none;
  }
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid {
  display: grid;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 0 auto;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 6fr 60px 5fr;
  grid-auto-flow: column;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-top {
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-top h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 10px;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-top h4 a {
  color: var(--default-color);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-middle {
  padding: 0 20px;
  margin: -1px 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-middle ul {
  text-align: start;
  margin: 0 10px 0 10px;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-bottom {
  padding: 0 20px 30px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-pdfsharp {
  background-color: var(--e-steel-blue-extralight);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-psx {
  background-color: color-mix(in srgb, var(--e-accent-color), #fff 75%);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-psx a {
  color: #fff;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .product-box-psx a:hover {
  color: var(--e-accent-color);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .offers-license-grid-relation {
  text-align: center;
  font-size: 0.9em;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .offers-license-grid-arrow {
  font-family: "Material Symbols Rounded";
  font-size: 30px;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .offers-license-grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto;
  grid-template-columns: 5fr 30px 6fr;
  grid-auto-flow: column;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-header {
  height: calc(100% - 20px);
  margin-top: 20px;
  border-radius: 8px 8px 0 0;
  padding: 5px 10px 10px 10px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-content {
  height: 100%;
  border-radius: 0 0 8px 8px;
  padding: 10px 10px 10px 10px;
  margin: -1px 0;
  text-align: center;
  overflow: hidden;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-content p {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-mit {
  background-color: var(--e-medium-gray);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-compliant {
  background-color: var(--e-dark-gray);
  color: #fff;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-compliant a {
  color: #fff;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-compliant a:hover {
  color: color-mix(in srgb, var(--e-dark-gray), #fff 85%);
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-psx {
  background-color: var(--e-accent-color);
  color: #fff;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-psx a {
  color: #fff;
}

.e-offers-license-model-image .offers-license-model-image-inner .offers-license-product-grid .license-box-psx a:hover {
  color: color-mix(in srgb, var(--e-accent-color), #fff 85%);
}

.e-offers-licensing {
  background-color: var(--e-steel-blue-extralight);
  padding: 60px 0 60px 0;
}

.e-offers-licensing .section-title-center > * {
  font-weight: bold;
}

.e-offers-licensing .licensing-text-block {
  margin-top: 20px;
  margin-bottom: 30px;
}

.e-offers-licensing .licensing-list-wrapper {
  display: flex;
  justify-content: center;
}

.e-offers-licensing .list-row {
  margin-top: 10px;
  margin-bottom: 18px;
}

.e-offers-licensing .list-row:last-child {
  margin-bottom: 0;
}

.e-offers-licensing .list-row ul {
  margin: 0;
  padding: 0;
}

.e-offers-licensing .list-row ul li {
  margin: 0 0 8px 0;
  padding: 0 0 0 3rem;
  line-height: 1.2em;
  list-style-type: none;
}

.e-offers-licensing .list-row ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 1.8em;
  font-weight: normal;
  position: relative;
  top: 0.3em;
  left: -3rem;
  display: inline-block;
  width: 0;
}

.e-offers-licensing .e-btn-accent {
  display: block;
  width: 150px;
  margin: 30px auto 0 auto;
}

.e-offers-support {
  padding: 60px 0 60px 0;
}

.e-offers-support .section-title-center > * {
  font-weight: bold;
}

.e-offers-support .support-row {
  --bs-gutter-x: calc(2 * 20px + 15px);
  --bs-gutter-y: 35px;
  --support-row-h-margin: max(0px, min(3rem, calc((100vw - 420px) / 2)));
  margin: 20px var(--support-row-h-margin) 20px;
}

.e-offers-support .support-row .support-item {
  background-color: var(--background-color);
  color: var(--default-color);
  height: 100%;
  padding: 25px 15% 30px 15%;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
  font-size: 16px;
}

.e-offers-support .support-row .support-item h3 {
  font-size: 26px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 8px;
}

.e-offers-support .support-row .support-item h3::after {
  content: "";
  background: var(--default-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 150px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.e-offers-support .support-row .support-item .support-item-price {
  font-size: 36px;
  font-weight: bold;
}

.e-offers-support .support-row .support-item .support-item-price .support-item-price-suffix {
  display: block;
  font-size: 28px;
  margin-top: -15px;
}

.e-offers-support .support-row .support-item p.support-item-price {
  margin-left: -20px;
  margin-right: -20px;
}

.e-offers-support .support-row .support-item .special-offer {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  margin: 3px calc(-1 * 15% * calc(100 / calc(100 - 2 * 15)) - 20px) 3px calc(-1 * 15% * calc(100 / calc(100 - 2 * 15)) - 20px);
  padding: 5px calc(20px + 10px) 5px calc(20px + 10px);
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}

.e-offers-support .support-row .support-item .special-offer::before {
  content: "";
  position: absolute;
  bottom: calc(-1 * 14px);
  left: 0;
  width: 0;
  height: 0;
  border-top: calc(14px / 2) solid var(--e-dark-accent-color);
  border-right: calc(20px / 2) solid var(--e-dark-accent-color);
  border-bottom: calc(14px / 2) solid transparent;
  border-left: calc(20px / 2) solid transparent;
}

.e-offers-support .support-row .support-item .special-offer::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * 14px);
  right: 0;
  width: 0;
  height: 0;
  border-top: calc(14px / 2) solid var(--e-dark-accent-color);
  border-left: calc(20px / 2) solid var(--e-dark-accent-color);
  border-bottom: calc(14px / 2) solid transparent;
  border-right: calc(20px / 2) solid transparent;
}

.e-offers-support .support-row .support-item .special-offer p {
  width: max-content;
  margin: 0 auto 0 auto;
}

.e-offers-support .support-row .support-item .special-offer p .support-item-price {
  display: block;
  margin-top: -5px;
  line-height: 1.1em;
}

.e-offers-support .support-row .support-item .special-offer p .support-item-price .support-item-price-suffix {
  display: inline;
}

.e-offers-support .support-row .support-item .support-item-default-price {
  font-size: 14px;
  font-weight: bold;
}

.e-offers-support .support-row .support-item .coming-soon {
  margin-top: 22px;
  text-align: center;
  font-style: italic;
}

.e-offers-support .support-row .support-item ul {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
}

.e-offers-support .support-row .support-item ul li {
  margin: 0 0 5px 0;
  padding: 0 30px 0 1.8rem;
  font-size: 16px;
  line-height: 1.5em;
  list-style-type: none;
}

.e-offers-support .support-row .support-item ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.2em;
  left: -1.8rem;
  display: inline-block;
  width: 0;
}

.e-offers-support .support-items-contact {
  margin: 30px 0;
}

.e-offers-support .support-items-contact .e-btn-accent {
  display: block;
  width: 150px;
  margin: 0 auto 0 auto;
}

.e-offers-level {
  background-color: var(--e-steel-blue-extralight);
  padding: 70px 0 70px 0;
}

.e-offers-how-work {
  width: 100%;
  position: relative;
  padding: 60px 0 60px 0;
  overflow: hidden;
}

.e-offers-how-work .background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.e-offers-how-work .container {
  position: relative;
  z-index: 3;
}

.e-offers-how-work .list-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.e-offers-how-work .list-row:last-child {
  margin-bottom: 0;
}

.e-offers-how-work .list-row ul {
  margin: 0;
  padding: 0;
}

.e-offers-how-work .list-row ul li {
  margin: 0;
  padding: 0 30px 0 4.25rem;
  min-height: 62.5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2em;
  list-style-type: none;
}

.e-offers-how-work .list-row ul li::before {
  content: "\e86c";
  font-family: "Material Symbols Rounded";
  font-size: 2.2em;
  font-weight: normal;
  position: relative;
  top: 0.4em;
  left: -4.25rem;
  display: inline-block;
  width: 0;
}

.e-offers-services {
  background-color: #fff;
  padding: 90px 0 70px 0;
}

.e-offers-services .service-row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.e-offers-services .service-row .service-item {
  background-color: var(--e-light-gray);
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
}
