@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bep-theme-font-default: 'DM Sans', sans-serif;
    --bep-theme-font-heading: 'Outfit', 'DM Sans', sans-serif;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--bep-theme-font-default);
    font-weight: 400;
}

b,
strong {
    font-family: var(--bep-theme-font-default);
    font-weight: 700;
}
a{text-decoration: none !important;}
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--bep-theme-font-heading);
    font-weight: 600;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

header{
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index:100;
}

header .bepCB{
background: rgba(0,0,0,.06);
  padding: 6px 0;
  font-size:12px;
}

header .bepMainHeader{padding:20px 0;}

header .bepMainLogo{float:left;}
header .bepMainLogo img{max-height:44px; height:44px;}

header .bepMainNav{float:right;}
header .bepMainNav a, header .bepMainNav button, .bepHeaderAction{display:inline-block; float:left; font-family:outfit;}
header .bepMainNav a{line-height:42px; margin-right:16px; color:#000;}
.bepHeaderAction{margin-left:30px;}

.bep_headaction_btn {
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #111;
  transition: all 0.25s ease;
}

.bep_headaction_btn--primary {
  background: #0a0a0a;
  color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
    border:1px solid #000;

}

.bep_headaction_btn--secondary {
  background: #fff;
  color: #111;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border:1px solid #000;
}


.bep_headaction_btn--primary:hover {
  background: #222;
}

header .bepMainHeader .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bepMainHeaderControls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bepMainNav {
  display: flex;
  align-items: center;
  gap: 24px;
  float: none;
}

.bepMainNav .bepHeaderAction {
  float: none;
}

.bep-header-nav-list {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.bep-header-nav-list a {
  line-height: 42px;
  color: #000;
  font-family: var(--bep-theme-font-heading);
  font-weight: 600;
}

.bep-mobile-catalog-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.bep-mobile-catalog-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.bep-mobile-catalog-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
}

.bep-mobile-catalog-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 23, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bep-mobile-catalog-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100dvh;
  background: #fff;
  box-shadow: -18px 0 42px rgba(10, 20, 32, 0.16);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  outline: none;
}

.bep-mobile-catalog-menu.is-open .bep-mobile-catalog-menu__backdrop {
  opacity: 1;
}

.bep-mobile-catalog-menu.is-open .bep-mobile-catalog-menu__panel {
  transform: translateX(0);
}

.bep-mobile-catalog-menu__header,
.bep-mobile-catalog-menu__top,
.bep-mobile-catalog-menu__footer {
  padding: 20px 20px 0;
}

.bep-mobile-catalog-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.bep-mobile-catalog-menu__logo img {
  max-height: 36px;
  width: auto;
  display: block;
}

.bep-mobile-catalog-menu__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.bep-mobile-catalog-menu__top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bep-header-nav-list.is-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.bep-header-nav-list.is-mobile a {
  line-height: 1.3;
  font-size: 18px;
}

.bepHeaderAction.is-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.bepHeaderAction.is-mobile .bep_headaction_btn {
  border-radius: 10px;
}

.bep-mobile-catalog-menu__categories-wrap {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 20px;
}

.bep-mobile-catalog-menu__categories {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.bep-mobile-catalog-menu__categories-header {
  padding: 20px 0 14px;
}

.bep-mobile-catalog-menu__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6b7a;
}

.bep-mobile-catalog-menu__categories-header h2 {
  margin: 0;
  font-size: 26px;
}

.bep-mobile-catalog-menu__category-scroller {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0 20px;
}

.bep-mobile-catalog-menu__all-link,
.bep-mobile-catalog-menu__category-link {
  display: block;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bep-mobile-catalog-menu__all-link {
  margin-bottom: 12px;
  font-weight: 700;
}

.bep-mobile-catalog-menu__all-link.is-active,
.bep-mobile-catalog-menu__category-link.is-active,
.bep-mobile-catalog-menu__category-link.is-active-branch {
  background: #edf4ff;
  border-color: #bed5ff;
  color: #0f4fbf;
}

.bep-mobile-catalog-menu__category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bep-mobile-catalog-menu__category-item.is-sub > .bep-mobile-catalog-menu__category-link {
  padding-left: 20px;
  font-size: 15px;
}

.bep-mobile-catalog-menu__category-item > .bep-mobile-catalog-menu__category-list {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
}

.bep-mobile-catalog-menu__footer {
  padding-top: 16px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bep-mobile-catalog-menu__footer-content {
  background: #f5f7fb;
  border-radius: 16px;
  padding: 16px;
}

.bep-mobile-catalog-menu__footer-title {
  margin: 0 0 6px;
  font-family: var(--bep-theme-font-heading);
  font-weight: 600;
}

.bep-mobile-catalog-menu__footer-content p:last-of-type {
  margin-bottom: 0;
}

.bep-mobile-catalog-menu__footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.bep-mobile-catalog-menu__footer-links a {
  color: #0f4fbf;
  font-weight: 700;
}

body.bep-mobile-catalog-menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  header .bepMainHeader {
    padding: 14px 0;
  }

  header .bepMainLogo img {
    max-height: 38px;
    height: 38px;
  }

  .bepMainNav {
    display: none;
  }

  .bep-mobile-catalog-toggle {
    display: inline-flex;
  }
}

@media (max-width: 575.98px) {
  header .bepCB {
    display: none;
  }

  header .bepMainHeader .container {
    gap: 14px;
  }

  .bep-mobile-catalog-menu__panel {
    width: 100%;
  }
}
