/*--------------------------------------------------------------
# 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 Icons Rounded';
  src: url(../fonts/MaterialIconsRound-Regular.otf);
}

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

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

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

/*--------------------------------------------------------------
# Forward Section 
--------------------------------------------------------------*/
.forward {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  padding: 60px 0 60px 0;
  overflow: hidden;
}

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

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

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

.forward .container h1 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.forward .container .logo {
  line-height: 1;
  margin-bottom: 30px;
}

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

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

.forward .container .forward-banner {
  background-color: var(--background-color);
  margin: 40px -100vw 30px -100vw;
  padding: 15px 0;
}

.forward .container .forward-banner h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.forward .container h3 {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 30px;
}

.forward .container .forward-item-pdfsharp {
  --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;
}

.forward .container .forward-item-docs {
  --background-color: #707070;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: var(--e-dark-gray);
  --surface-color: var(--e-dark-gray);
  --contrast-color: #ffffff;
}

.forward .container .forward-item-15 {
  --background-color: #959595;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: var(--e-dark-gray);
  --surface-color: var(--e-dark-gray);
  --contrast-color: #ffffff;
}

.forward .container .forward-item {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 30px 30px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s;
  border-radius: 10px;
}

.forward .container .forward-item a {
  color: var(--default-color);
}

.forward .container .forward-item a:hover {
  color: color-mix(in srgb, var(--default-color), var(--e-medium-gray) 30%);
}

.forward .container .forward-item ul {
  padding-left: 3.25rem;
}

.forward .container .forward-item ul li {
  margin: 0 0 20px 0;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2em;
  list-style-type: none;
}

.forward .container .forward-item ul li::before {
  content: "\e86b";
  font-family: "Material Icons Rounded";
  font-size: 1.25em;
  line-height: 0;
  position: relative;
  top: 0.6em;
  left: -3.25rem;
  transform: translate(0.4em, -0.9em) rotate(90deg);
  display: inline-block;
  width: 0;
}

.forward .container .forward-item .forward-item-subheading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.forward .container .forward-item .forward-item-description {
  margin-bottom: 1.5em;
}

.forward .container .forward-item .forward-item-btn-col {
  text-align: right;
}

.forward .container .forward-item .forward-item-btn {
  margin-top: 0;
  width: 200px;
}

.forward .container .forward-item .forward-item-flag {
  background-color: #204162;
  color: #fff;
  margin: -15px 0 10px -30px;
  padding: 3px 30px 3px calc(30px + var(--bs-gutter-x) * .5 + 3.25rem);
  border-radius: 0 10px 10px 0;
  font-size: 1.75rem;
}
