/**
 * Loading first in the style.scss & classic-editor.scss
 */
/**
 * Header styling and layout
 */
.site-header {
  /* Backwards compat for Hello 2.3.0 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  position: relative;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 100000;
}

.site-header .site-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-header .site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.site-header .site-branding img {
  height: 50px;
  width: auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media (max-width: 767px) {
  .site-header .site-branding img {
    height: 40px;
  }
}
.site-header .custom-logo-link {
  display: block;
}

.site-header .header-inner .site-branding .site-title,
.site-header .header-inner .site-branding .site-description {
  margin: 0;
}

.site-header .header-inner .site-branding .site-logo img {
  display: block;
}

.site-header .header-inner .site-branding.show-title .site-logo {
  display: none !important;
}

.site-header .header-inner .site-branding.show-logo .site-title {
  display: none !important;
}

.site-header.header-inverted .header-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.site-header.header-inverted .header-inner .site-branding {
  text-align: end;
}

.site-header.header-stacked .header-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

/**
 * Footer styling and layout
 */
.site-footer {
  -webkit-padding-before: 1rem;
          padding-block-start: 1rem;
  -webkit-padding-after: 1rem;
          padding-block-end: 1rem;
  position: relative;
}

.site-footer .site-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-footer .site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.site-footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-footer .footer-inner .custom-logo-link {
  display: block;
}

.site-footer .footer-inner .site-branding .site-title,
.site-footer .footer-inner .site-branding .site-description {
  margin: 0;
}

.site-footer .footer-inner .site-branding .site-logo img {
  display: block;
}

.site-footer .footer-inner .site-branding.show-title .site-logo {
  display: none !important;
}

.site-footer .footer-inner .site-branding.show-logo .site-title {
  display: none !important;
}

.site-footer .footer-inner .copyright {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.site-footer .footer-inner .copyright p {
  margin: 0;
}

.site-footer.footer-inverted .footer-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.site-footer.footer-inverted .footer-inner .site-branding {
  text-align: end;
}

.site-footer.footer-stacked .footer-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.site-footer.footer-stacked .footer-inner .site-branding .site-title {
  text-align: center;
}

.site-footer.footer-stacked .footer-inner .site-navigation .menu {
  padding: 0;
}

@media (max-width: 576px) {
  .site-footer:not(.footer-stacked) .footer-inner .site-branding,
  .site-footer:not(.footer-stacked) .footer-inner .site-navigation,
  .site-footer:not(.footer-stacked) .footer-inner .copyright {
    display: block;
    text-align: center;
    width: 100%;
    max-width: none;
  }
  .site-footer .footer-inner .site-navigation ul.menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer .footer-inner .site-navigation ul.menu li {
    display: inline-block;
  }
}
/**
 * Navigation Menus
 */
.site-header.header-stacked .site-navigation-toggle-holder {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}

.site-header.menu-layout-dropdown .site-navigation {
  display: none;
}

.site-navigation-toggle-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 15px;
}

.site-navigation-toggle-holder .site-navigation-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
  cursor: pointer;
  border: 0 solid;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #494c4f;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon {
  display: block;
  width: 1.25rem;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:before, .site-navigation-toggle-holder .site-navigation-toggle-icon:after {
  content: "";
  background-color: currentColor;
  display: block;
  height: 3px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border-radius: 3px;
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:before {
  -webkit-box-shadow: 0 0.35rem 0 currentColor;
          box-shadow: 0 0.35rem 0 currentColor;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0.35rem) rotate(45deg);
          transform: translateY(0.35rem) rotate(45deg);
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:after {
  -webkit-transform: translateY(-0.35rem) rotate(-45deg);
          transform: translateY(-0.35rem) rotate(-45deg);
}

.site-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-navigation ul.menu, .site-navigation ul.menu ul {
  list-style-type: none;
  padding: 0;
}

.site-navigation ul.menu ul {
  padding: 0 0 0 25px;
}
.site-navigation ul.menu ul a {
  padding: 6px 0;
}

.site-navigation ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.site-navigation ul.menu li {
  position: relative;
}

.site-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.site-navigation ul.menu li:hover > a,
.open > a,
.site-navigation ul.menu li.current_page_item > a {
  opacity: 0.8;
}

.site-navigation ul.menu li.menu-item-has-children:focus-within > ul {
  display: block;
}

.site-navigation ul.menu li.menu-item-has-children > a {
  position: relative;
}
.site-navigation ul.menu li.menu-item-has-children > a:after {
  content: "\e828";
  font-family: "fontello";
  padding-left: 5px;
}

.site-navigation ul.menu li ul ul {
  left: 100%;
  top: 0;
}

footer .site-navigation ul.menu li ul {
  top: auto;
  bottom: 100%;
}

footer .site-navigation ul.menu li ul ul {
  bottom: 0;
}

footer .site-navigation ul.menu a {
  padding: 5px 15px;
}

.site-navigation-dropdown {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-transition: max-height 0.3s, -webkit-transform 0.3s;
  transition: max-height 0.3s, -webkit-transform 0.3s;
  transition: max-height 0.3s, transform 0.3s;
  transition: max-height 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: top;
          transform-origin: top;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
}

.site-navigation-toggle-holder:not(.elementor-active) + .site-navigation-dropdown {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  max-height: 0;
}

.site-navigation-toggle-holder.elementor-active + .site-navigation-dropdown {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  max-height: 100vh;
}

.site-navigation-dropdown ul {
  padding: 0;
}

.site-navigation-dropdown ul.menu {
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  background: white;
}

.site-navigation-dropdown ul.menu li {
  display: block;
  width: 100%;
  position: relative;
}

.site-navigation-dropdown ul.menu li a {
  display: block;
  padding: 20px;
  background: #ffffff;
  color: #55595c;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1019607843);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1019607843);
}

.site-navigation-dropdown ul.menu li.current-menu-item a {
  color: white;
  background: #55595c;
}

.site-navigation-dropdown ul.menu > li li {
  -webkit-transition: max-height 0.3s, -webkit-transform 0.3s;
  transition: max-height 0.3s, -webkit-transform 0.3s;
  transition: max-height 0.3s, transform 0.3s;
  transition: max-height 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  max-height: 0;
}

.site-navigation-dropdown ul.menu li.elementor-active > ul > li {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  max-height: 100vh;
}

@media (max-width: 576px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .site-header.menu-dropdown-mobile:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .site-header.menu-dropdown-tablet:not(.menu-layout-dropdown) .site-navigation {
    display: none !important;
  }
}
.site-header.menu-dropdown-none:not(.menu-layout-dropdown) .site-navigation-toggle-holder {
  display: none !important;
}

.site-header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .site-header-block {
    gap: 20px;
  }
}
.site-header-block .site-header-info a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(253, 255, 255, 0.9);
}
.site-header-block .site-header-info a img {
  margin-right: 5px;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .site-header-block .site-header-info a img {
    height: 18px;
  }
}
.site-header-block .site-header-info a span {
  text-decoration-line: underline;
}
@media (max-width: 767px) {
  .site-header-block .site-header-info a span {
    display: none;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9998;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup-overlay.active {
  display: block;
  opacity: 1;
}

.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  background: #fff;
  width: 550px;
  max-width: 90%;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
  line-height: 1.5;
  font-size: 14px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .popup-box {
    width: 285px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
.popup-box.active {
  display: block;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.popup-box .popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  font-size: 24px;
  cursor: pointer;
  background: #fff !important;
  color: #000 !important;
  font-size: 33px !important;
  padding: 0;
  line-height: 0 !important;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  padding-bottom: 3px;
}
@media (max-width: 767px) {
  .popup-box .popup-close {
    top: -6px !important;
    right: -6px !important;
  }
}
.popup-box img {
  display: block;
}
/*# sourceMappingURL=header-footer.css.map */