@charset "UTF-8";
:root {
  --color-foreground: #111111;
  --color-background: #ffffff;
  --color-primary: #007acc;
  --color-secondary: #1e1e1e;
  --color-muted: #6c757d;
  --color-border: #e1e1e1;
  --color-contrast: #ffffff;
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-heading: "Bitter", Georgia, serif;
  --font-size-small: 0.8rem;
  --font-size-normal: 1rem;
  --font-size-large: 1.25rem;
  --font-size-hero: 2rem;
  --line-height-normal: 1.6;
  --line-height-heading: 1.3;
  --max-content-width: 1024px;
  --max-wide-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family-base);
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: var(--line-height-normal);
  font-family: var(--font-family-base);
}

img,
video,
iframe,
embed {
  max-width: 100%;
  height: auto;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

ol,
ul {
  margin: 0 0 var(--spacing-md) 0;
  padding-left: 1.5rem;
}

blockquote {
  margin: 0 0 var(--spacing-lg) 0;
  padding-left: var(--spacing-md);
  border-left: 4px solid var(--color-border);
}

/*
 * Visually hides content while keeping it in the accessibility tree.
 * Used throughout the theme (skip links, WooCommerce's own core
 * templates) but was never actually defined anywhere — those elements
 * have been rendering as plain visible text this whole time.
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/*
 * Skip links stay visually hidden (via .screen-reader-text above) until
 * keyboard-focused, at which point they need to become visible so a
 * keyboard user can actually see where they're about to jump to.
 */
.skip-link.screen-reader-text:focus {
  background-color: var(--color-background);
  color: var(--color-primary);
  clip: auto !important;
  clip-path: none;
  display: block;
  position: fixed !important;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  width: auto;
  height: auto;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-normal);
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 0 0 2px var(--color-primary);
  z-index: 100000;
}

/*
 * Respect the OS-level "reduce motion" preference site-wide — covers
 * every transition/animation the theme uses (menu, dropdowns, side nav,
 * fade-in-on-scroll, etc.) in one place rather than needing it added to
 * each one individually. Doesn't remove motion entirely (some users
 * still want the *fact* something changed to register, just not a full
 * animation) — collapses it to effectively instant instead.
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: var(--font-size-normal);
  line-height: var(--line-height-normal);
  color: var(--color-foreground);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--spacing-md) 0;
  font-family: var(--font-family-heading);
  line-height: var(--line-height-heading);
  color: var(--color-secondary);
}

h1 {
  font-size: clamp(2.5rem, 3.5vw, 4.5rem);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0 0 var(--spacing-md);
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

a {
  color: var(--color-primary);
}

a:hover,
a:focus {
  text-decoration: underline;
}

body {
  min-height: 100vh;
}

.site-inner,
.site-content {
  width: min(100%, var(--max-content-width));
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.alignwide {
  width: 100%;
  max-width: var(--max-wide-width);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content {
  margin: 0 auto var(--spacing-lg);
}

.entry-content > * + * {
  margin-top: var(--spacing-lg);
}

.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.mH1_menu_header_class_1 {
  position: fixed;
  height: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 0px 0 0px;
  z-index: 97;
  transition: 0.8s;
  filter: drop-shadow(0px 4px 2px transparent);
  border-bottom: transparent 1px solid;
}

.mH1_menu_header_class_1.scrolledMenu {
  border-bottom: rgb(40, 109, 194) 1px solid;
  background-color: rgb(18, 18, 18);
  filter: drop-shadow(0px 4px 2px black);
}

.mH1_menu_main_holder {
  position: relative;
  width: 100%;
  height: 60px;
  background-color: transparent;
}

.mH1_menu_list_holder {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 0px 0px;
  list-style: none;
  margin: 0;
  padding: 0 20px 0 0;
}

.mH1_menu_list_holder li {
  position: relative;
  height: 100%;
  width: auto;
}

.mH1_menu_list_holder li a {
  position: relative;
  width: 100%;
  height: 100%;
  width: 110px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.mH1_menu_header_class_1.scrolledMenu .mH1_menu_list_holder li a {
  color: aliceblue;
}

.mH1_menu_list_holder li a:hover, .mH1_menu_header_class_1.scrolledMenu .mH1_menu_list_holder li a:hover {
  color: rgb(51, 126, 246);
}

/* drop down menu items */
.drop_down_menu_holder {
  width: 120px !important;
}

.drop_down_menu_holder > a::after {
  content: "^";
  position: absolute;
  right: 0;
  top: 17px;
}

.drop_down_menu_holder:hover > a::after,
.drop_down_menu_holder:focus-within > a::after {
  content: "-";
  position: absolute;
  right: 0;
  top: 15px;
}

/* :focus-within keeps this open via Tab as well as :hover — without
   it, keyboard users can never reach the submenu links at all, since
   nothing here previously responded to focus. */
.drop_down_menu_holder:hover .drop_down_menu,
.drop_down_menu_holder:focus-within .drop_down_menu {
  display: block;
}

.drop_down_menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: auto;
}

.drop_down_menu li {
  width: 200px;
  position: relative;
  text-align: start;
}

.drop_down_menu li a {
  position: relative;
  background-color: rgb(51, 126, 246);
  width: 100%;
  justify-content: start;
  padding: 5px 10px 5px 10px;
  border-bottom: solid black 1px;
}

/* logo */
.menu_logo_holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 0px 40px;
  box-sizing: border-box;
  pointer-events: none;
}

.menu_logo {
  width: 200px;
  height: 100%;
  position: relative;
  /* background-color: rgb(0, 0, 0); */
  display: block;
  margin: 0;
  box-sizing: border-box;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_logo:hover img {
  filter: saturate(0.5) brightness(0.8);
}

.menu_logo img {
  width: 100%;
  transition: 0.5s;
}

.menu_side_button_holder {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  box-sizing: border-box;
  padding: 0px 0px 0px 10px;
  align-items: center;
  pointer-events: none;
}

.menu_side_button {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  color: rgb(0, 0, 0);
  background-color: transparent;
  pointer-events: all;
  font-size: 1.3rem;
  transition: 0.5s;
  cursor: pointer;
}

.mH1_menu_header_class_1.scrolledMenu .menu_side_button {
  color: white;
}

.menu_side_button:hover {
  color: grey;
}

@media only screen and (max-width: 950px) {
  .mH1_menu_list_holder {
    display: none;
  }
  .menu_side_button_holder {
    display: flex;
  }
  .menu_logo {
    margin: 0 auto;
  }
}
/* menu decor */
.mh1_menu_decor_under1 {
  width: 100%;
  height: 5px;
  background-color: grey;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, calc(100% - 3px) 100%, 3px 100%);
  bottom: -5px;
  transition: 0.8s;
  z-index: -1;
  box-sizing: border-box;
}

.mH1_menu_header_class_1.scrolledMenu .mh1_menu_decor_under1 {
  bottom: 0px;
}

/* decor lines */
.side_line_decor_class_mn1 {
  width: calc(var(--side_line_decor_class_mn1__line_start) + var(--side_line_decor_class_mn1__line_width));
  height: 100%;
  background-color: rgb(40, 40, 40);
  clip-path: polygon(var(--side_line_decor_class_mn1__line_start) 0, 0px 100%, var(--side_line_decor_class_mn1__line_width) 100%, calc(var(--side_line_decor_class_mn1__line_start) + var(--side_line_decor_class_mn1__line_width)) 0%);
  position: absolute;
  top: 0;
  z-index: 0;
}

:root {
  --side_line_decor_class_mn1__line_start: 30px;
  --side_line_decor_class_mn1__line_width: 15px;
  --side_line_decor_class_mn1__line_gap: 15px;
  --side_line_decor_class_mn1__line_offset: 160px;
  --side_line_decor_class_mn1__line_offset_2:30px;
}

.mn1_into_1 {
  left: var(--side_line_decor_class_mn1__line_offset);
}

.mn1_into_2 {
  left: calc(var(--side_line_decor_class_mn1__line_width) + var(--side_line_decor_class_mn1__line_gap) + var(--side_line_decor_class_mn1__line_offset));
}

@media only screen and (max-width: 950px) {
  .mn1_into_1 {
    right: var(--side_line_decor_class_mn1__line_offset_2);
    left: unset;
  }
  .mn1_into_2 {
    right: calc(var(--side_line_decor_class_mn1__line_width) + var(--side_line_decor_class_mn1__line_gap) + var(--side_line_decor_class_mn1__line_offset_2));
    left: unset;
  }
}
/* side nav menu ////////////////////////////////////////////////////////////////////////// */ /* side Nav //////////////////// */
.mH1_Side_Nav_Holder {
  width: var(--mH1_Side_Nav_width);
  height: var(--mH1_Side_Nav_height);
  background-color: var(--mH1_Side_Nav_BG_color);
  position: fixed;
  z-index: 99;
  top: 0;
  overflow: hidden;
  max-width: 0;
  transition: var(--mH1_Side_Nav_transition);
}

.mH1_SN_Btn_holder {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: var(--mH1_SN_Btn_holder_padding);
  background-color: #1a1a1a;
}

#sideNavCloseButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--mh1_sideNavCloseButton_size);
  height: var(--mh1_sideNavCloseButton_size);
  background-color: var(--mh1_sideNavCloseButton_BG_color);
  color: var(--mh1_sideNavCloseButton_color);
  font-size: var(--mh1_sideNavCloseButton_txt_size);
  transition: var(--mh1_sideNavCloseButton_hover_transition);
  cursor: pointer;
}

#sideNavCloseButton:hover {
  background-color: var(--mh1_sideNavCloseButton_hover_BG_color);
  color: var(--mh1_sideNavCloseButton_hover_color);
}

/* item holder */
.mh1_SN_list_holder {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: var(--mH1_SN_Menu_list_Item_Gap);
  padding: var(--mH1_SN_Menu_list_Item_holder_padding);
  list-style-type: none;
}

/* list itmes */
.mh1_SN_list_holder li a {
  box-sizing: border-box;
  text-decoration: none;
  color: var(--mH1_SN_Menu_list_item_txt_color);
  background-color: var(--mH1_SN_Menu_list_item_BG_color);
  padding: var(--mh1_SN_list_holder_padding);
  display: flex;
  align-items: center;
  width: 100%;
}

.mh1_SN_list_holder li a p {
  margin: 0;
  padding: 0;
  margin-left: var(--mh1_SN_list_item_lvl_1);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.mh1_SN_list_holder > li a:hover {
  color: var(--mH1_SN_Menu_list_item_hover_txt_color);
  background-color: var(--mH1_SN_Menu_list_item_hover_BG_color);
}

/* tier 2 */
.mh1_SN_tier_list_2 > li a p {
  margin-left: var(--mh1_SN_list_item_lvl_2);
}

.mh1_SN_tier_list_2 > li a {
  background-color: var(--mH1_SN_Menu_list_item_2_BG_color);
  color: var(--mH1_SN_Menu_list_item_2_txt_color);
}

.mh1_SN_tier_list_2 > li a:hover {
  background-color: var(--mH1_SN_Menu_list_item_2_hover_BG_color);
  color: var(--mH1_SN_Menu_list_item_hover_txt_color);
}

/* operations */
#side_nav_menu.sideNav_closed {
  max-width: 0px;
  transition-delay: 0s;
}

#side_nav_menu.sideNav_opened {
  max-width: 250px;
  transition-delay: 0s;
}

#side_nav_menu.sideNav_closed .N_Nav_Item {
  max-width: 0px;
  transform: translateX(-200px);
}

#side_nav_menu.sideNav_opened .N_Nav_Item {
  max-width: 250px;
  transform: translateX(0px);
}

/* overlay */
#mH1_SN_Overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  background-color: black;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  pointer-events: all;
  display: none;
}

/* drop down menus */
.activeCollapsable {
  background-color: rgb(71, 71, 71) !important;
}

.dropdownMenu_items.collapsableButton::after {
  content: "^";
  right: 0;
  position: absolute;
  padding: 0px 0px 11px 15px;
  transform: rotate(180deg) translateY(7px);
  font-size: 0.85rem;
  /* transition: 0.4s; */
}

.dropdownMenu_items.activeCollapsable.collapsableButton::after {
  content: "-";
  padding: 5px 15px 0px 0px;
  transform: rotate(0) translateY(-2px);
}

.collapsableContent {
  overflow: hidden;
  transition: 0.5s;
}

#mh1_side_menu_Decor_line_holder {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: end;
  pointer-events: none;
}

.mH1_side_line {
  width: var(--mH1_side_line_width);
  height: 100px;
  background-color: var(--mH1_side_line_color);
  transition: var(--mH1_side_line_transition);
  transition-delay: var(--mH1_side_line_transition_delay);
}

#mh1_side_menu_Decor_line_holder.line_open .mH1_side_line {
  height: 100%;
}

:root {
  --mH1_Side_Nav_width: 250px;
  --mH1_Side_Nav_height: 100vh;
  --mH1_Side_Nav_BG_color: #111;
  --mH1_Side_Nav_transition: 0.5s;
  /* btn holder */
  --mH1_SN_Btn_holder_padding: 5px 10px 5px 0px;
  /* btn (close) */
  --mh1_sideNavCloseButton_color: white;
  --mh1_sideNavCloseButton_BG_color: transparent;
  --mh1_sideNavCloseButton_txt_size: 1.3rem;
  --mh1_sideNavCloseButton_size: 35px;
  --mh1_sideNavCloseButton_hover_color: rgb(0, 0, 0);
  --mh1_sideNavCloseButton_hover_BG_color: lightgray;
  --mh1_sideNavCloseButton_hover_transition: 0.5s;
  /* item holder */
  --mH1_SN_Menu_list_Item_Gap: 0 0;
  --mH1_SN_Menu_list_Item_holder_padding: 0 0px 0 0px;
  /* list Item */
  --mH1_SN_Menu_list_item_BG_color: transparent;
  --mH1_SN_Menu_list_item_hover_BG_color: #535353;
  --mH1_SN_Menu_list_item_txt_color: white;
  --mH1_SN_Menu_list_item_hover_txt_color: rgb(165, 165, 165);
  /* Level 2 */
  --mH1_SN_Menu_list_item_2_BG_color: rgb(27, 27, 27);
  --mH1_SN_Menu_list_item_2_hover_BG_color: #858585;
  --mH1_SN_Menu_list_item_2_txt_color: rgb(159, 159, 159);
  --mH1_SN_Menu_list_item_hover_txt_color: rgb(220, 220, 220);
  --mh1_SN_list_holder_padding: 8px 0 8px 0;
  --mH1_SN_Menu_list_Item_hover_transition: background-color 0.5s, color 0.5s;
  --mH1_SN_Menu_list_Item_hover_padding: 10px 30px 10px 30px;
  --mH1_SN_Menu_list_Item_txt_size: medium;
  /* margin left */
  --mh1_SN_list_item_lvl_1: 12px;
  --mh1_SN_list_item_lvl_2: 20px;
  /* side line */
  --mH1_side_line_color: #5d5d5d;
  --mH1_side_line_transition: 0.4s;
  --mH1_side_line_transition_delay: 0.1s;
  --mH1_side_line_width: 1px;
}

/* main */
#Mb_site-footer {
  position: relative;
  box-sizing: border-box;
  background-color: var(--aos-footer-bg);
  padding: 60px 0px 20px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  box-sizing: border-box;
}

.footer-columns {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.footer-column {
  flex: 0 1 220px;
  max-width: 320px;
  color: white;
}

.footer-column h3 {
  margin: 0 0 15px 0;
  font-size: 1em;
  font-weight: 600;
  color: white;
}

.footer-column p {
  margin: 0 0 8px 0;
  color: rgb(190, 190, 190);
  font-size: 0.9em;
  line-height: 1.5;
}

.footer-column a {
  color: rgb(190, 190, 190);
  transition: 0.3s;
}

.footer-column a:hover {
  color: white;
}

/* footer menu
   .page_item is the class wp_page_menu() gives its <li> items when it's
   rendering as the fallback for an unassigned "Footer Menu" location
   (see custom-footers/footer-standard.php) — styled identically to
   .menu-item so the fallback looks the same as a real assigned menu. */
.footer-menu {
  color: white;
  text-align: center;
  padding: 0px 10px 10px 10px;
}

.footer-menu .menu-item,
.footer-menu .page_item {
  display: flex;
}

.footer-menu .menu-item a,
.footer-menu .page_item a {
  display: flex;
  text-decoration: none;
  color: white;
  border-bottom: solid 1px rgb(42, 42, 42);
  padding: 10px 10px;
  width: 250px;
  height: auto;
  transition: 0.5s;
  font-size: 0.8em;
}

.footer-menu .menu-item a:hover,
.footer-menu .page_item a:hover {
  background-color: #303031;
  color: #b0b0b0;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 50px 0px;
}

/* standard prebuilt footer (footer_preset = 'prebuilt') */
.footer-standard {
  display: flex;
  justify-content: center;
  padding: 10px 0 30px 0;
}

/* policy text */
.footer-policy {
  text-align: center;
  color: rgb(190, 190, 190);
  font-size: 0.8em;
  padding: 0 15px 10px 15px;
}
.footer-policy a {
  color: rgb(190, 190, 190);
}
.footer-policy a:hover {
  color: white;
}

/* copyright line — always rendered now (falls back to a generated line
   when footer_copyright is empty), so it needs a default look rather than
   unstyled browser text on the dark footer background. */
.footer-copyright {
  text-align: center;
  color: rgb(158, 158, 158);
  font-size: 0.8em;
  padding: 10px 0 0 0;
}

/* "Contact" module (footer_column_N_type = contact) */
.footer-contact p {
  margin: 0 0 8px 0;
}
.footer-contact a {
  color: rgb(190, 190, 190);
  text-decoration: none;
}
.footer-contact a:hover {
  color: white;
  text-decoration: underline;
}

/* "Social Links" module (footer_column_N_type = social) — icon buttons,
   not text labels; the icon itself is inline SVG using currentColor (see
   AOS_social_icon_svg() in inc/footer-modules.php) so it inherits the
   link's color/hover state with no extra markup. */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(80, 80, 80);
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}
.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.08);
}

/* "Map" module (footer_column_N_type = map) — width/height come from
   Customizer → Footer → Modules → Map Width/Height, set as an inline
   style directly on the <iframe> (see AOS_footer_map_module()), so there's
   nothing to fix here beyond making sure it never overflows its column. */
.footer-map {
  width: 100%;
}
.footer-map iframe {
  border: 0;
  display: block;
  max-width: 100%;
}

/* Shown instead of a live iframe when no address is set yet — see
   AOS_footer_map_module()'s empty-$url branch. */
.footer-map--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border: 1px dashed rgb(90, 90, 90);
  border-radius: 6px;
  color: rgb(150, 150, 150);
  font-size: 0.85em;
  line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| Footer Layout variants (footer_layout: standard / stacked / centered)
|--------------------------------------------------------------------------
| The class lands directly on #Mb_site-footer (see footer.php) — was
| already being applied with zero CSS anywhere to act on it.
*/
#Mb_site-footer.stacked .footer-columns {
  flex-direction: column;
  align-items: center;
}
#Mb_site-footer.stacked .footer-column {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
#Mb_site-footer.stacked .footer-social {
  align-items: center;
}

#Mb_site-footer.centered .footer-columns {
  justify-content: center;
}
#Mb_site-footer.centered .footer-column {
  text-align: center;
}
#Mb_site-footer.centered .footer-social {
  align-items: center;
}

/*
    Theme Name: OML3D Version 2 - Omletion A
    Author: OML3D - ML
    Description: OML3D Main Theme - Total Omlet v2 
    Version: 2.0
*/
html, body {
  margin: 0 0 0 0 !important;
  padding: 0 0 0 0 !important;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: all;
  scroll-behavior: smooth;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

/* main anim controller values */
.anim_a5 {
  opacity: 1;
}

.service_seperator_class_1_shadow {
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, #111 0%, #0c0c0c 100%);
  position: relative;
}

.service_seperator_class_1_shadow_seperator_2 {
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, #121212 0%, #111 20%, #111 70%, #0c0c0c 100%);
  position: relative;
}

.service_seperator_class_1_shadow_seperator_3 {
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, #0c0c0c 0%, #111 20%, #111 70%, #000000 100%);
  position: relative;
}

.contentHolder {
  width: 100%;
  height: 100%;
  background-color: rgb(8, 8, 8);
  position: relative;
}

/* divider section */
.section_divider_class_1 {
  width: 100%;
  height: 5px;
  background-color: #EEE5E9;
  position: relative;
  box-sizing: border-box;
}

/* con body class — not referenced by any template or body_class() filter in
   the theme right now; migrated as-is rather than dropped, since removing
   unused CSS is a cleanup decision, not a migration one. */
.AOS_main_body_con {
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  background-color: white;
  display: flex;
  gap: 0;
  flex-direction: column;
}

.button,
button,
input[type=submit],
.MB_read_more_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-contrast);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button:hover,
button:hover,
input[type=submit]:hover,
.MB_read_more_button:hover,
.MB_read_more_button:focus {
  background: #0062c8;
}

.MB_read_more_button_con {
  margin-top: var(--spacing-sm);
}

hr {
  border: 0;
  height: 1px;
  background: var(--color-border);
  margin: var(--spacing-lg) 0;
}

.wp-block-separator {
  margin: var(--spacing-lg) 0;
}

.aos-breadcrumbs {
  margin: var(--spacing-sm) 0;
  font-size: var(--font-size-small);
  color: var(--color-muted);
}
.aos-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.aos-breadcrumbs li {
  display: flex;
  align-items: center;
}
.aos-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 var(--spacing-xs);
  color: var(--color-border);
}
.aos-breadcrumbs a {
  color: var(--color-muted);
}
.aos-breadcrumbs a:hover, .aos-breadcrumbs a:focus {
  color: var(--color-primary);
}
.aos-breadcrumbs [aria-current=page] {
  color: var(--color-foreground);
}

/* fade in animations */
@keyframes fade-in-bottom-1-6s {
  0% {
    scale: 1.1;
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    scale: 1;
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-bottom-anim-1-6s {
  animation: fade-in-bottom-1-6s 2s ease-out 0s normal forwards;
}

#comments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0px;
  margin-top: 50px;
  border-top: 1px solid var(--color-border);
  position: relative;
  box-sizing: border-box;
}

#comments #comments-list, #comments #respond {
  width: 100%;
  max-width: 600px;
  position: relative;
  box-sizing: border-box;
}

#comments-list .comments-title {
  font-size: 30px;
  text-align: center;
  padding: 20px 10px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: var(--font-family-heading);
  position: relative;
  box-sizing: border-box;
}

.comment-body {
  width: 100%;
  padding: 30px 10px 20px 10px;
  position: relative;
  box-sizing: border-box;
  border-bottom: solid 1px var(--color-border);
}

.children .comment-body {
  padding: 30px 10px 20px 30px;
}

.comment-body p {
  padding: 15px 10px 15px 80px;
  position: relative;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-foreground);
}

/* layout */
.comment-body .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: drop-shadow(1px 1px 2px rgb(207, 207, 207));
  position: absolute;
  left: 0;
}

.children .comment-body .avatar {
  width: 40px;
  height: 40px;
}

.comment-author, .comment-meta {
  padding-left: 80px;
  position: relative;
}

.comment-author .fn {
  font-size: 18px;
  font-weight: 500;
}

.comment-meta a {
  font-size: 10px;
  color: var(--color-muted);
  text-decoration: none;
}

.comment-meta a.comment-edit-link {
  transition: 0.5s;
}

.comment-meta a.comment-edit-link:hover {
  color: var(--color-foreground);
}

/* reply */
.reply {
  display: flex;
  justify-content: end;
}

.reply a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.5s;
}

.reply a:hover {
  color: #0062c8;
}

/* comment depth changes */
/* response section */
.comment-respond {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
}

.comment-reply-title {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0px 20px 0px;
  display: flex;
  gap: 10px 10px;
  width: 100%;
  height: auto;
  position: relative;
  width: 100%;
}

.comment-reply-title small {
  justify-content: end;
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: auto;
  right: 0;
  height: 100%;
}

.comment-reply-title small a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.5s;
  font-size: 12px;
}

.comment-reply-title small a:hover {
  color: #0062c8;
}

/* reply form */
#commentform .form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#commentform .form-submit input {
  background-color: transparent;
  color: var(--color-foreground);
  border: solid var(--color-foreground) 1px;
  padding: 10px 40px;
  transition: 0.5s;
  cursor: pointer;
}

#commentform .form-submit input:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.comment-form-comment {
  display: flex;
  flex-direction: column;
}

.comment-form-comment label {
  font-size: 14px;
  color: var(--color-foreground);
  padding: 5px 0px 5px 0px;
}

.comment-form-comment textarea {
  resize: vertical;
  max-height: 200px;
}

.required {
  color: red;
  font-size: 10px;
}

.required-field-message {
  width: 100%;
  padding: 10px 0px 0px 0px;
  font-size: 12px;
  color: var(--color-muted);
  display: block;
}

.comment-awaiting-moderation {
  font-size: 12px;
  color: red;
  padding: 1px 5px 1px 80px;
}

.logged-in-as {
  width: 100%;
  font-size: 14px;
  color: var(--color-foreground);
}

.logged-in-as a {
  text-decoration: none;
  font-style: italic;
  transition: 0.4s;
  color: var(--color-muted);
  font-size: 10px;
  padding: 2px 4px;
}

.logged-in-as a:hover {
  color: var(--color-primary);
}

#email-notes {
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: var(--color-foreground);
}

/* form fill ins */
.comment-form-author, .comment-form-email, .comment-form-url {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto auto;
}

.comment-form-author label, .comment-form-email label, .comment-form-url label {
  font-size: 14px;
  color: var(--color-foreground);
  font-weight: 400;
  width: 120px;
  padding-bottom: 5px;
}

/* cookie consent */
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  padding: 20px 0px 0px 0px;
  max-width: 400px;
  margin: auto auto;
}

.comment-form-cookies-consent label {
  font-size: 12px;
  color: var(--color-foreground);
  padding: 0px 0px 0px 5px;
}
