@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: auto;
}
@media screen and (max-width: 768px) {
  html {
    margin: 0 !important;
  }
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1B1B1B;
  background: #ffffff;
}

body * {
  box-sizing: border-box;
}

.container {
  width: 1440px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

#site_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150vh;
  z-index: 98;
  cursor: pointer;
  background-color: black;
  opacity: 0;
  transition: opacity 0.3s;
}
#site_overlay.active {
  opacity: 0.65;
}

a.button {
  border-radius: 8px;
  border: 1px solid #0b0b0b;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 127px;
  padding: 18px 22px;
  box-sizing: border-box;
  color: #0b0b0b;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
}
a.button:hover {
  background: #B29B51;
  border-color: #B29B51;
  color: white;
}
a.button.filled {
  background: #0b0b0b;
  color: white;
}
a.button.filled:hover {
  background: #B29B51;
  border-color: #B29B51;
}
a.button.loading {
  pointer-events: none;
  opacity: 0.5;
}
a.button.btn-outline {
  border: 1px solid #D5D7DA;
  background: #ffffff;
  color: #1B1B1B;
  width: -moz-fit-content;
  width: fit-content;
}
a.button.btn-outline:hover {
  background: #B29B51;
  border-color: #B29B51;
  color: #ffffff;
}
a.button.btn-primary {
  padding: 18px 22px 18px 22px;
  color: white;
  border-color: #0b0b0b;
  background: #0b0b0b;
  gap: 10px;
}
a.button.btn-primary::after {
  content: "";
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
a.button.btn-primary:hover {
  border-color: #B29B51;
  background: #B29B51;
}

.button.btn-primary.mobile-button-sticky {
  display: none;
}
@media (max-width: 520px) {
  .button.btn-primary.mobile-button-sticky {
    display: flex;
    position: sticky;
    top: 74px;
    bottom: 0;
    left: 6px;
    width: calc(100% - 12px);
    padding: 12px 22px 12px 22px;
    background: #1c1c1c;
    text-align: center;
    z-index: 98;
  }
}

.utility {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 38px;
}
.utility:not(:has(.utility-note)) .container {
  justify-content: flex-end;
}
.utility .utility-note {
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.utility .utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility a,
.utility .utility-links > span:not(.sep) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  transition: color 0.18s ease;
}
.utility a:hover {
  color: #B99B4E;
}
.utility svg,
.utility img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.utility .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 860px) {
  .utility .utility-note {
    display: none;
  }
  .utility .container {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 560px) {
  .utility .utility-links {
    gap: 16px;
  }
  .utility .utility-label {
    display: none;
  }
}

header {
  display: flex;
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0px;
  z-index: 100;
  transition: all 0.3s;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
header .container .menu_wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100%;
}
header .container .menu_wrapper > div {
  height: 100%;
}
header .container .menu_wrapper ul.menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style-type: none;
  height: 100%;
}
header .container .menu_wrapper ul.menu li {
  position: relative;
  height: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
}
header .container .menu_wrapper ul.menu li a {
  display: flex;
  font-family: "Inter", sans-serif;
  height: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s;
}
header .container .menu_wrapper ul.menu li a:hover {
  color: #B29B51;
}
header .container .menu_wrapper ul.menu li.menu-item-has-children:hover a:after {
  transform: rotate(180deg);
}
header .container .menu_wrapper ul.menu li.menu-item-has-children:hover ul.sub-menu {
  display: flex;
}
header .container .menu_wrapper ul.menu li.menu-item-has-children > a:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../../svg/chevron.svg");
  margin-left: 10px;
  background-position: center center;
  background-size: contain;
  transition: transform 0.3s;
}
header .container .menu_wrapper ul.menu li ul.sub-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  gap: 4px;
  padding: 6px 10px;
  margin: 0;
  left: 0;
  top: 100%;
  list-style-type: none;
  background: white;
  border: 1px solid #E4E7EC;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
  z-index: 2;
  border-radius: 8px;
  border-top: 2px solid #B29B51;
}
header .container .menu_wrapper ul.menu li ul.sub-menu li {
  padding: 5px 0;
  text-align: center;
  display: flex;
  justify-content: flex-start;
}
header .container .menu_wrapper ul.menu li ul.sub-menu li a {
  font-weight: 400;
  min-width: -moz-max-content;
  min-width: max-content;
}
header .container .menu_wrapper ul.menu li ul.sub-menu li:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
header .container .buttons_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  header .container .buttons_wrapper {
    display: none;
  }
}
header #mobile_menu_btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
header #mobile_menu_btn .line {
  position: absolute;
  left: 11px;
  top: 14px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #0b0b0b;
  transition: all 0.3s;
}
header #mobile_menu_btn .line:nth-child(2) {
  top: 20px;
}
header #mobile_menu_btn .line:nth-child(3) {
  top: 26px;
}
header #mobile_menu_btn.active .line:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center;
  top: 20px;
}
header #mobile_menu_btn.active .line:nth-child(2) {
  opacity: 0;
}
header #mobile_menu_btn.active .line:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: center;
  top: 20px;
}
@media screen and (max-width: 998px) {
  header .container a.header_logo img {
    height: auto;
    max-width: 190px;
  }
  header .container .menu_wrapper {
    gap: 6px;
  }
  header .container .menu_wrapper ul.menu {
    gap: 6px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
  header .container a.header_logo img {
    max-width: 170px;
  }
  header .container .menu_wrapper {
    display: none;
  }
  header .container #mobile_menu_btn {
    display: flex;
  }
}

#mobile_menu {
  position: fixed;
  top: 0;
  transition: all 0.3s;
  background: white;
  z-index: 99;
  display: flex;
  right: -100%;
  width: 100%;
  padding-top: 72px;
  height: 100dvh;
  overflow: scroll;
}
#mobile_menu.active {
  top: 0;
  right: 0;
}
#mobile_menu .container {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#mobile_menu .container .menu-menu-1-container {
  padding: 24px 12px;
}
#mobile_menu .container ul.menu {
  padding: 24px 0;
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#mobile_menu .container ul.menu > li > a {
  border-bottom: 1px solid #d8d8d8;
}
#mobile_menu .container ul.menu li {
  width: 100%;
  height: auto;
}
#mobile_menu .container ul.menu li a {
  width: 100%;
  display: flex;
  color: #0b0b0b;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 16px;
  text-decoration: none;
  box-sizing: border-box;
}
#mobile_menu .container ul.menu li ul.sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 10px;
}
#mobile_menu .container ul.menu li ul.sub-menu li a {
  padding: 6px 16px 6px 24px;
  position: relative;
}
#mobile_menu .container ul.menu li ul.sub-menu li a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #ffffff;
  border: 1px solid;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(6px, -50%);
}
#mobile_menu .container .buttons_wrapper {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 16px;
  border-top: 2px solid #F9FAFB;
}

@media screen and (max-width: 768px) {
  body.sticked #mobile_menu {
    padding-top: 50px;
  }
}
html,
body {
  margin-top: 0 !important;
}

#wpadminbar {
  position: fixed !important;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#wpadminbar:hover {
  opacity: 1;
}
