:root {
  --webui-font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --webui-font-primary: "Roboto", sans-serif;
  --webui-font-secondary: "Work Sans", sans-serif;
  --webui-color-default: #364d59;
  --webui-color-primary: #feb900;
  --webui-color-primary-hover: #ffc732;
  --webui-color-secondary: #52565e;
  --webui-color-surface: #ffffff;
  --webui-color-border: rgba(22, 32, 51, 0.08);
  --webui-header-height: 100px;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.webui-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--webui-font-default);
  color: var(--webui-color-default);
  overflow-x: hidden;
  background: #ffffff;
}

body.webui-body main#main {
  flex: 1 0 auto;
}

body.webui-body a {
  text-decoration: none;
}

body.webui-body a:hover {
  text-decoration: none;
}

body.webui-body h1,
body.webui-body h2,
body.webui-body h3,
body.webui-body h4,
body.webui-body h5,
body.webui-body h6 {
  font-family: var(--webui-font-primary);
}

body.webui-body section {
  overflow-x: hidden;
}

body.webui-body .empty {
  padding: 90px 0 0 !important;
  min-height: 0 !important;
}

html:not(.no-js) [data-aos="webui-fade"] {
  opacity: 0;
  transform: scale(0.985);
  transform-origin: top center;
  transition-property: opacity, transform;
}

html:not(.no-js) [data-aos="webui-fade"].aos-animate {
  opacity: 1;
  transform: none;
}

.breadcrumbs {
  padding: 140px 0 60px;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--webui-color-primary);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background: var(--webui-color-primary-hover);
}

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

.header {
  z-index: 997;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--webui-font-primary);
}

.header .logo h1 span {
  color: var(--webui-color-primary);
}

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--webui-font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    margin-left: 5px;
    font-size: 12px;
    line-height: 0;
  }

  .navbar > ul > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--webui-color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .navbar a:hover::before,
  .navbar li:hover > a::before,
  .navbar .active::before {
    width: 100%;
    visibility: visible;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul {
    position: absolute;
    top: calc(100% + 30px);
    left: 28px;
    display: block;
    min-width: 200px;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    color: var(--webui-color-default);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--webui-color-primary);
  }

  .navbar .dropdown:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 50px 0 10px;
    list-style: none;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--webui-font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    margin-left: 5px;
    font-size: 12px;
    line-height: 0;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    display: none;
    position: static;
    margin: 10px 20px;
    padding: 10px 0;
    border: 1px solid #222428;
    transition: all 0.5s ease-in-out;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    z-index: 9999;
    padding-right: 10px;
    color: #fff;
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    color: #fff;
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    transition: 0.5s;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9996;
    background: rgba(0, 0, 0, 0.6);
  }
}

.footer {
  position: relative;
  padding: 80px 0 60px;
  color: #fff;
  font-size: 14px;
  background: url("../../img/footer-bg.73d9e66a3a48.jpg") top center no-repeat;
  background-size: cover;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  margin: 0 0 20px;
  padding: 2px 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer-content .footer-info p {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--webui-font-primary);
  font-size: 14px;
  line-height: 24px;
}

.footer .footer-content h4 {
  padding-bottom: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

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

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-content .footer-info a,
.footer .footer-legal a {
  color: var(--webui-color-primary);
  transition: 0.3s;
}

.footer .footer-content .footer-info a:hover,
.footer .footer-legal a:hover {
  color: var(--webui-color-primary);
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  color: #fff;
  font-size: 13px;
}

.footer .footer-legal .credits a {
  color: var(--webui-color-primary);
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
