:root {
  --font-hd-1: 28px;
  --font-hd-2: 24px;
  --font-hd-3: 24px;
  --font-hd-4: 16px;
  --font-hd-5: 16px;
  --font-num: 20px;
  --font-size-lg: 14px;
  --font-size-md: 14px;
  --font-size-sm: 12px;
  --font-size-1: 14px;
  --font-size-2: 14px;
  --primary-color: #fff;
  --secondary-color: rgba(255, 255, 255, 0.8);
  --success-color: #11772D;
  --success-color-2: #56ab2f80;
  --success-color-3: #0E9455;
  --dark-color: #020F06;
  --gradient1: linear-gradient(105deg, #000 1.13%, #010903 104.03%);
  --gradient2: linear-gradient(106deg, rgba(0, 0, 0, 0.10) -52.45%, rgba(2, 15, 6, 0.10) 104.07%);
  --gradient3: linear-gradient(154deg, #020F06 -8.88%, #000 142.84%);
  --gradient4: linear-gradient(92deg, #000 -1.79%, #020F06 99.48%);
  --gradient5:linear-gradient(0deg, rgba(53, 53, 53, 0.50) 0%, rgba(53, 53, 53, 0.50) 100%);
  --border-1: 1px solid rgba(17, 119, 45, 0.40);
  --border-2:1px solid rgba(17, 119, 45, 0.50);
  --bg-1:rgba(0, 0, 0, 0.10);
  --bg-2:rgba(217, 217, 217, 0.00);
  --bg-3:rgba(2, 15, 6, 0.50);
}

@media (min-width: 768px) {
  :root {
    --font-hd-1: 48px;
    --font-hd-2: 40px;
    --font-hd-3: 30px;
    --font-hd-4: 20px;
    --font-hd-5: 18px;
    --font-num: 42px;
    --font-size-lg: 16px;
    --font-size-md: 14px;
    --font-size-sm: 12px;
    --font-size-1: 20px;
    --font-size-2: 18px;
  }
}
@media (min-width: 1200px) {
  :root {
    --font-hd-1: 48px;
    --font-hd-2: 40px;
    --font-hd-3: 28px;
    --font-hd-4: 20px;
    --font-hd-5: 18px;
    --font-num: 36px;
    --font-size-lg: 16px;
    --font-size-md: 14px;
    --font-size-sm: 12px;
    --font-size-1: 18px;
    --font-size-2: 16px;
  }
}
@media (min-width: 1400px) {
  :root {
    --font-hd-1: 56px;
    --font-hd-2: 48px;
    --font-hd-3: 30px;
    --font-hd-4: 24px;
    --font-hd-5: 20px;
    --font-num: 42px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    --font-size-1: 20px;
    --font-size-2: 18px;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Lato, sans-serif;
  color: var(--secondary-color);
  line-height: 1.6;
  font-size: 14px;
  background: linear-gradient(105deg, #000 1.13%, #010903 104.03%);
  margin: 0;
  padding: 0;
  transition: all 0.5s ease;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 14px));
  }
}
@media (min-width: 992px) {
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% - 20px));
    }
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Judson", serif;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

ul, li {
  list-style: none;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: inline-block;
  line-height: 0;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

.container, .hdr-container {
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.container::after, .hdr-container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  .container, .hdr-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .hdr-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .hdr-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .hdr-container {
    max-width: 1272px;
  }
}

@media (min-width: 1600px) {
  .hdr-container {
    max-width: 1500px !important; /* Forces only the header to expand to 1500px */
  }
}
.sec-padding {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .sec-padding {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  .sec-padding {
    padding: 100px 0;
  }
}

.sec-padding-2 {
  padding: 60px 0 40px;
}
@media (min-width: 768px) {
  .sec-padding-2 {
    padding: 80px 0 40px;
  }
}
@media (min-width: 1200px) {
  .sec-padding-2 {
    padding: 100px 0 60px;
  }
}

.sec-padding-3 {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .sec-padding-3 {
    padding: 0 0 80px;
  }
}
@media (min-width: 1200px) {
  .sec-padding-3 {
    padding: 0 0 100px;
  }
}

.banner-hd-1 {
  font-size: var(--font-hd-1);
  color: var(--primary-color);
  max-width: 754px;
  font-weight: 700;
}

.hd-typ1 {
  font-size: var(--font-hd-2);
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.3;
}

.hd-typ2 {
  font-size: var(--font-hd-3);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
  font-family: Lato, sans-serif;
}

.hd-typ3 {
  font-size: var(--font-hd-4);
  color: var(--primary-color);
  font-family: Lato, sans-serif;
  font-weight: 500;
  line-height: 1.4;
}

.hd-typ4 {
  font-size: var(--font-hd-5);
  color: var(--primary-color);
  font-family: Lato, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.hd-typ4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  border: var(--border-1);
}
@media (min-width: 992px) {
  .hd-typ4::after {
    bottom: -8px;
  }
}

.sub-hd {
  font-size: var(--font-hd-4);
  color: var(--success-color);
  font-weight: 600;
  margin-bottom: 12px;
}
.sub-hd.capitalise {
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .mob-only-disp {
    display: none !important;
  }
}

.desk-only-disp {
  display: none;
}
@media (min-width: 992px) {
  .desk-only-disp {
    display: block;
  }
}

@media (min-width: 992px) {
  .mob-tab-disp {
    display: none !important;
  }
}

.tab-desk-disp {
  display: none;
}
@media (min-width: 768px) {
  .tab-desk-disp {
    display: block;
  }
}

.btn-typ1 {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--primary-color);
  border-radius: 24px;
  padding: 8px 22px;
  font-weight: 400;
  font-size: var(--font-size-md);
  transition: background 0.2s, box-shadow 0.2s;
  border: 1px solid var(--success-color);
  cursor: pointer;
  gap: 8px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.btn-typ1 input {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .btn-typ1 {
    padding: 14px 24px;
    gap: 20px;
    border-radius: 25px;
  }
  .btn-typ1:hover .btn-txt {
    background: linear-gradient(90deg, var(--success-color), #11772D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
  }
  .btn-typ1:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(33, 203, 243, 0.18);
    -webkit-text-fill-color: #FFF;
  }
}
.btn-typ1 .btn-arrow {
  display: flex;
  align-items: center;
  margin-left: 6px;
  transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
}
.btn-typ1 .btn-txt {
  transition: color 0.2s;
  font-weight: 400;
  font-size: var(--font-size-lg);
  line-height: 1;
}
.btn-typ1:hover .btn-arrow {
  transform: rotate(45deg);
}
.btn-typ1:hover .btn-arrow svg path {
  fill: var(--success-color);
}

.btn-typ2 {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: var(--font-size-md);
  padding: 0 0 8px;
  font-weight: 400;
  transition: background 0.2s, box-shadow 0.2s;
  border-bottom: 1px solid var(--success-color);
  cursor: pointer;
  gap: 8px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (min-width: 1200px) {
  .btn-typ2 {
    gap: 20px;
  }
  .btn-typ2:hover .btn-txt {
    color: var(--primary-color);
  }
  .btn-typ2:hover .btn-arrow {
    transform: rotate(45deg);
  }
}
.btn-typ2 .btn-arrow {
  display: flex;
  align-items: center;
  margin-left: 6px;
  transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
}

.mt-1 {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .mt-1 {
    margin-top: 12px;
  }
}

.mt-2 {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .mt-2 {
    margin-top: 24px;
  }
}
@media (min-width: 1600px) {
  .mt-2 {
    margin-top: 32px;
  }
}

.mt-3 {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .mt-3 {
    margin-top: 32px;
  }
}
@media (min-width: 1600px) {
  .mt-3 {
    margin-top: 40px;
  }
}

.mt-4 {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .mt-4 {
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .mt-4 {
    margin-top: 48px;
  }
}
@media (min-width: 1600px) {
  .mt-4 {
    margin-top: 60px;
  }
}

.mt-5 {
  margin-top: 24px;
}
@media (min-width: 1600px) {
  .mt-5 {
    margin-top: 30px;
  }
}

.mt-6 {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .mt-6 {
    margin-top: 40px;
  }
}
@media (min-width: 1600px) {
  .mt-6 {
    margin-top: 48px;
  }
}

.mt-7 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mt-7 {
    margin-top: 48px;
  }
}
@media (min-width: 992px) {
  .mt-7 {
    margin-top: 56px;
  }
}
@media (min-width: 1400px) {
  .mt-7 {
    margin-top: 64px;
  }
}
@media (min-width: 1600px) {
  .mt-7 {
    margin-top: 80px;
  }
}

.mt-30 {
  margin-top: 30px;
}

.mb-1 {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .mb-1 {
    margin-bottom: 16px;
  }
}
@media (min-width: 1600px) {
  .mb-1 {
    margin-bottom: 20px;
  }
}

.mb-2 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .mb-2 {
    margin-bottom: 24px;
  }
}
@media (min-width: 1600px) {
  .mb-2 {
    margin-bottom: 42px;
  }
}

.mb-3 {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .mb-3 {
    margin-bottom: 32px;
  }
}
@media (min-width: 1600px) {
  .mb-3 {
    margin-bottom: 40px;
  }
}

.mb-4 {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .mb-4 {
    margin-bottom: 48px;
  }
}
@media (min-width: 1600px) {
  .mb-4 {
    margin-bottom: 60px;
  }
}

.mb-5 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .mb-5 {
    margin-bottom: 24px;
  }
}
@media (min-width: 1600px) {
  .mb-5 {
    margin-bottom: 30px;
  }
}

.txt {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--secondary-color);
  font-weight: 400;
}
.txt b {
  font-weight: 900;
  color: var(--primary-color);
}

.text-center {
  text-align: center;
}

.header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: top 0.5s ease;
}
.header.scrld {
  top: 0;
}
.header.scrld::after {
  top: -1px;
}
@media (min-width: 992px) {
  .header.scrld::before {
    top: 0;
  }
}
.header::after {
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  top: calc(-100% - 48px);
  left: 0;
  background: var(--dark-color);
  content: "";
  display: block;
  pointer-events: none;
  z-index: 9;
  transition: top 0.5s ease;
}
.header::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, rgba(0, 0, 0, 0.6862745098) -1.79%, rgba(2, 15, 6, 0.6705882353) 99.48%);
  transition: top 0.5s ease;
  z-index: 8;
}
@media (min-width: 992px) {
  .header::before {
    top: -40px;
  }
}
@media (min-width: 992px) {
  .header {
    top: 40px;
  }
}

.inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  position: relative;
}
@media (min-width: 992px) {
  .inner-wrapper {
    justify-content: space-between;
    min-height: 90px;
  }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  z-index: 12;
}
@media (min-width: 992px) {
  .logo-wrapper {
    margin-right: 32px;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .nav-wrapper {
    align-items: center;
    gap: 24px;
  }
}

.nav-bar {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--dark-color);
  transition: right 0.5s ease;
  padding: 24px 16px 0;
  overflow: auto;
}
@media (min-width: 768px) {
  .nav-bar {
    padding: 40px 40px 0;
  }
}
@media (min-width: 992px) {
  .nav-bar {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    gap: 90px;
    padding: 0;
    background-color: transparent;
    overflow: visible;
  }
}
@media (min-width: 1200px) {
  .nav-bar {
    gap: 110px;
  }
}
@media (min-width: 1400px) {
  .nav-bar {
    gap: 160px;
  }
}

.top-wrap + .btn-wrapper {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .top-wrap + .btn-wrapper {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  .top-wrap + .btn-wrapper {
    margin-top: 0;
  }
}
.top-wrap {
  max-width: 688px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .top-wrap {
    display: flex;
    gap: 68px;
    align-items: center;
    max-width: none;
    margin: 0;
  }
}

.menu-item.menu-item-has-children {
  position: relative;
  padding-right: 24px;
  display: flex;
  flex-wrap: wrap;
}
.menu-item.menu-item-has-children::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 12px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.65703 7.071L2.66411e-05 1.414L1.41403 -4.94551e-07L6.36403 4.95L11.314 -6.18079e-08L12.728 1.414L7.07103 7.071C6.8835 7.25847 6.62919 7.36379 6.36403 7.36379C6.09886 7.36379 5.84455 7.25847 5.65703 7.071Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .menu-item.menu-item-has-children::after {
    top: 55%;
    transform: translateY(-50%);
  }
}
.menu-item.menu-item-has-children.open::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .menu-item.menu-item-has-children.open::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.menu-item.menu-item-has-children .sub-menu {
  position: static;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(17, 119, 45, 0.35);
  display: none;
  box-shadow: none;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 240px;
    background-color: var(--dark-color);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: none;
  }
}
.menu-item.menu-item-has-children .sub-menu li {
  padding: 10px 16px;
  transition: background 0.2s ease;
}
.menu-item.menu-item-has-children .sub-menu li:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
@media (min-width: 992px) {
  .menu-item.menu-item-has-children:hover .sub-menu {
    display: block;
  }
  .menu-item.menu-item-has-children.open::after {
    transform: translateY(-50%);
  }
}
.menu-item.menu-item-has-children.open .sub-menu {
  display: block;
  padding: 8px 0 8px 12px;
}
@media (min-width: 992px) {
  .menu-item {
    position: relative;
  }
}

.nav-link {
  font-size: var(--font-size-lg);
  color: var(--primary-color);
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .nav-link:hover {
    opacity: 0.8;
  }
}

.hamburger-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 12;
}
@media (min-width: 992px) {
  .hamburger-menu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mob-only-disp {
    display: none !important;
  }
}

.side-nav-close {
  display: none;
  z-index: 12;
}

.menu-open .header::after {
  top: -1px;
}
.menu-open .header .nav-bar {
  right: 0;
}
.menu-open .header .side-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-open .header .hamburger-menu {
  display: none;
}/*# sourceMappingURL=hdr-workfile.css.map */