/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Libre Franklin",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Source Sans Pro",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

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

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

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

.mbz-footer-d-none {
  display: none !important;
}

.mbz-navmenu-d-none {
  display: none !important;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

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

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

.header .social-links-1 {
  margin: 0 0 20px 0;
}

.header .social-links-1 a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links-1 a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  background: #966919;
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

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

/* Dummy I 01 Page Header
------------------------------*/
.dummy-i-01-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/* Dummy I 02 Page Header
------------------------------*/
.dummy-i-02-page .header {
  --background-color: #686868;
  --heading-color: #ffffff;
  --nav-color: #eeeeee;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

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

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

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

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

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

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

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

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  /* font-size: 1em; */
  /* 12px; */
  line-height: 0;
  /* color: var(--accent-color); */
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

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

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

.footer .footer-links ul a:hover {
  --mc1: #e77339;
  text-decoration: underline dotted var(--mc1);
  font-size: 1em;
  /* font-weight: 700; */
  /* text-shadow: 0px 0px 0 var(--mc1), 0px 0px 0 var(--mc1), 0px 0px 0 var(--mc1), 1px 1px 0 var(--mc1); */
  /* text-shadow: -1px -1px 0 var(--mc1), 1px -1px 0 var(--mc1), -1px 1px 0 var(--mc1), 1px 1px 0 var(--mc1); */
  color: color-mix(in srgb, white, transparent 58%);
  /* #3d4d6a; */
  /* color-mix(in srgb, var(--accent-color), transparent 8%); */
}

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

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

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

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

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

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

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

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

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

.footer .copyright ul>li a:hover {
  color: #bcbcbc;
  /* var(--heading-color) */
}

.footer .copyright ul>li span {
  font-size: 1.3em;
  padding-left: 0.425em;
  /* 12px; */
  /* 1ch;*/
  padding-right: 0.225em;
  /* 8px; */
  /* 1ch; */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 20px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  background-color: #444444;
  overflow: none;
}

.hero #men-alt-1 h1 {
  border: 0;
}

.hero #men-alt-1 h1:after {
  content: "";
}

.hero #men-alt-2 {
  display: none;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 42%;
    color: orange;
    background-color: #444444;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
}

.hero:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
}

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

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero blockquote {
  color: #aaaaaa;
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 20px 0;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: #966919;
}

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

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero .btn-watch-video:hover i {
  color: #966919;
}

.hero .mbz-fowm-1 {
  padding-top: 10px;
  color: #e77339;
}

.hero .mbz-fowm-1 span {
  filter: brightness(0.72);
}

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

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .mbrztab1 {
  padding-left: 20px;
}

.hero .bgi2bg {
  filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
  -webkit-filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
}

.hero .bgi1img {
  width: 100% !important;
}

.hero .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  border: 0.25rem #e77339 solid;
  margin-left: 20px;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  letter-spacing: 2px;
}

.hero .mbrzstamp1 {
  border: 0px white solid;
  margin-left: 20px;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 35px;
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  border-radius: 5px;
}

@media (max-width: 800px) {
  .hero #men-alt-1 {
    display: none;
  }

  .hero #men-alt-2 {
    display: flex;
  }
}

@media (max-width: 600px),
(max-height: 600px) {
  .hero {
    padding-top: 10px;
  }

  .hero .mbz-fowm-1 {
    padding-left: 20px;
  }

  .hero h1 {
    color: silver;
    font-size: 22px !important;
  }

  .hero .mbrzstamp1 {
    padding: 0;
  }
}

@media (max-width: 900px),
(max-height: 900px) {
  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
  }
}

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

/*--------------------------------------------------------------
# Hero I 01 Section
--------------------------------------------------------------*/
.hero-i-01 {
  padding-top: 20px;
  /* 40px */
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  background-color: #444444;
  overflow: none;
  /*  #e77339;  */
  /*
  img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  */
}

@media (min-width: 1200px) {
  .hero-i-01:after {
    position: absolute;
    content: "";
    width: 42%;
    color: orange;
    background-color: #444444;
    /*  #e77339;  */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
}

.hero-i-01:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
}

.hero-i-01 .container,
.hero-i-01 .container-fluid {
  z-index: 3;
  position: relative;
}

.hero-i-01 h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero-i-01 blockquote {
  color: #aaaaaa;
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  /* margin: 40px 0; */
  margin: 20px 0;
}

.hero-i-01 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero-i-01 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

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

.hero-i-01 .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-i-01 .btn-watch-video:hover {
  color: var(--default-color);
}

.hero-i-01 .btn-watch-video:hover i {
  color: var(--default-color);
}

.hero-i-01 .mbz-fowm-1 {
  padding-top: 10px;
  color: #e77339;
}

@media (max-width: 640px) {
  .hero-i-01 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-i-01 .btn-get-started,
  .hero-i-01 .btn-watch-video {
    font-size: 13px;
  }
}

.hero-i-01 .videoDiv-xxx {
  left: 45%;
  top: -25%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  /* 10px; */
  box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
  padding: 0px;
  border-color: green;
  border-style: solid;
  margin-left: 20px;
}

.hero-i-01 .videoDiv-xxx c-h1 {
  color: yellow;
  font-size: 38px;
  z-index: 999 !important;
}

.hero-i-01 .mbrztab1 {
  padding-left: 20px;
}

.hero-i-01 .hero-bbb {
  margin: 0 !important;
  padding: 0 !important;
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: contain !important;
}

.hero-i-01 .hero-img {
  /* filter: opacity(0.6); */
  padding: 0;
  margin: 0;
  z-index: 3 !important;
}

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

.hero-i-01 .hero-img-xxx img {
  /* mbz border-radius: 20px; */
}

.hero-i-01 .bgi2bg {
  filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
  -webkit-filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
}

.hero-i-01 .bgi1img {
  width: 100% !important;
}

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

.hero-i-01 .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  border: 0.25rem #e77339 solid;
  margin-left: 20px;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  letter-spacing: 2px;
  /*0.2em !important;*/
}

.hero-i-01 .mbrzstamp1 {
  border: 0px white solid;
  margin-left: 20px;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 35px;
}

.hero-i-01 .stampx {
  border: 0px white solid;
  margin-left: 20px;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 35px;
  background-color: silver;
  mix-blend-mode: hard-light;
}

.hero-i-01 .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  border-radius: 5px;
}

@media (max-width: 600px),
(max-height: 600px) {
  .hero-i-01 {
    min-height: auto;
    padding-top: 10px;
  }

  .hero-i-01 .mbz-fowm-1 {
    padding-left: 20px;
  }

  .hero-i-01 h1 {
    color: silver;
    font-size: 22px !important;
  }

  .hero-i-01 #heroundefined-3-xxx {
    display: flex !important;
    justify-content: start !important;
    vertical-align: top !important;
    float: left !important;
    height: auto;
    min-height: none !important;
    top: 0 !important;
    margin: auto !important;
  }

  .hero-i-01 #img-di-998-xxx {
    min-height: none !important;
    background-color: #0ff;
    vertical-align: top !important;
    float: left !important;
    margin: auto !important;
  }
}

@media (max-width: 900px),
(max-height: 900px) {
  .hero-i-01 {
    min-height: none;
    padding-top: 30px;
  }

  .hero-i-01 h1 {
    margin: 0;
    font-size: 2.2rem;
    /* !important; */
    font-weight: 700;
  }

  .hero-i-01 #xxx-heroundefined-3 {
    display: flex !important;
    justify-content: start !important;
    vertical-align: top !important;
    float: left !important;
    height: auto;
    min-height: none !important;
    top: 0 !important;
    margin: auto !important;
  }

  .hero-i-01 #xxx-img-di-998 {
    min-height: none !important;
    background-color: #0ff;
    vertical-align: top !important;
    float: left !important;
    margin: auto !important;
  }

  .hero-i-01 #img-bg-999 {
    display: none !important;
    /*
    left: 20px;
    top: 20px;
    position: absolute;
    display: block;
    z-index: 999;
    */
  }

  .hero-i-01 .videoDiv-xxx {
    left: 45%;
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
    padding: 0px;
    margin-left: 20px;
  }
}

.hero-i-01 #img-bg-999 {
  /* id: geht nicht anders..? */
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  left: 40%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* section */
/*--------------------------------------------------------------
# Hero Iundefined Section
--------------------------------------------------------------*/
.hero-iundefined {
  padding-top: 20px;
  /* 40px */
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  background-color: #444444;
  overflow: none;
  /*  #e77339;  */
  /*
  img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  */
}

@media (min-width: 1200px) {
  .hero-iundefined:after {
    position: absolute;
    content: "";
    width: 42%;
    color: orange;
    background-color: #444444;
    /*  #e77339;  */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
}

.hero-iundefined:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
}

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

.hero-iundefined h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero-iundefined blockquote {
  color: #aaaaaa;
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  /* margin: 40px 0; */
  margin: 20px 0;
}

.hero-iundefined .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero-iundefined .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

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

.hero-iundefined .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero-iundefined .btn-watch-video:hover i {
  color: var(--default-color);
}

.hero-iundefined .mbz-fowm-1 {
  padding-top: 10px;
  color: #e77339;
}

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

  .hero-iundefined .btn-get-started,
  .hero-iundefined .btn-watch-video {
    font-size: 13px;
  }
}

.hero-iundefined .videoDiv-xxx {
  left: 45%;
  top: -25%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  /* 10px; */
  box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
  padding: 0px;
  border-color: green;
  border-style: solid;
  margin-left: 20px;
}

.hero-iundefined .videoDiv-xxx c-h1 {
  color: yellow;
  font-size: 38px;
  z-index: 999 !important;
}

.hero-iundefined .mbrztab1 {
  padding-left: 20px;
}

.hero-iundefined .hero-bbb {
  margin: 0 !important;
  padding: 0 !important;
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: contain !important;
}

.hero-iundefined .hero-img {
  /* filter: opacity(0.6); */
  padding: 0;
  margin: 0;
  z-index: 3 !important;
}

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

.hero-iundefined .hero-img-xxx img {
  /* mbz border-radius: 20px; */
}

.hero-iundefined .bgi2bg {
  filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
  -webkit-filter: brightness(0.78) grayscale(20%) blur(4px) opacity(0.4);
}

.hero-iundefined .bgi1img {
  width: 100% !important;
}

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

.hero-iundefined .mbrzmisi1 {
  transform: rotate(-3deg);
  margin-top: -20px;
  border: 0.25rem #e77339 solid;
  margin-left: 20px;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  letter-spacing: 2px;
  /*0.2em !important;*/
}

.hero-iundefined .mbrzstamp1 {
  border: 0px white solid;
  margin-left: 20px;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 35px;
}

.hero-iundefined .stampx {
  border: 0px white solid;
  margin-left: 20px;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 35px;
  background-color: silver;
  mix-blend-mode: hard-light;
}

.hero-iundefined .mbrzstamp1 {
  box-shadow: inset 60px 0 60px #e77339, inset 20px 0 80px #eee, inset -20px 0 80px #0ff, 0 0 50px #fff, -10px 0 80px #e77339, 10px 0 80px #0ff;
  border-radius: 5px;
}

@media (max-width: 600px),
(max-height: 600px) {
  .hero-iundefined {
    min-height: auto;
    padding-top: 10px;
  }

  .hero-iundefined .mbz-fowm-1 {
    padding-left: 20px;
  }

  .hero-iundefined h1 {
    color: silver;
    font-size: 22px !important;
  }

  .hero-iundefined #heroundefined-3-xxx {
    display: flex !important;
    justify-content: start !important;
    vertical-align: top !important;
    float: left !important;
    height: auto;
    min-height: none !important;
    top: 0 !important;
    margin: auto !important;
  }

  .hero-iundefined #img-di-998-xxx {
    min-height: none !important;
    background-color: #0ff;
    vertical-align: top !important;
    float: left !important;
    margin: auto !important;
  }
}

@media (max-width: 900px),
(max-height: 900px) {
  .hero-iundefined {
    min-height: none;
    padding-top: 30px;
  }

  .hero-iundefined h1 {
    margin: 0;
    font-size: 2.2rem;
    /* !important; */
    font-weight: 700;
  }

  .hero-iundefined #xxx-heroundefined-3 {
    display: flex !important;
    justify-content: start !important;
    vertical-align: top !important;
    float: left !important;
    height: auto;
    min-height: none !important;
    top: 0 !important;
    margin: auto !important;
  }

  .hero-iundefined #xxx-img-di-998 {
    min-height: none !important;
    background-color: #0ff;
    vertical-align: top !important;
    float: left !important;
    margin: auto !important;
  }

  .hero-iundefined #img-bg-999 {
    display: none !important;
    /*
    left: 20px;
    top: 20px;
    position: absolute;
    display: block;
    z-index: 999;
    */
  }

  .hero-iundefined .videoDiv-xxx {
    left: 45%;
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 0 23px rgba(0, 0, 0, 0.5);
    padding: 0px;
    margin-left: 20px;
  }
}

.hero-iundefined #img-bg-999 {
  /* id: geht nicht anders..? */
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  left: 40%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* section */