:root {
  --hunter-blue: #002855;
  --hunter-blue-light: #003366;
  --hunter-gold: #FFA600;
  --hunter-gold-dark: #E69500;
  --hunter-cyan: #12a7e9;
  --white: #ffffff;
  --black: #000000;
  --primary: #002855;
  --secondary: #FFA600;
  --success: #198754;
  --danger: #dc3545;
  --warning: #FFA600;
  --info: #12a7e9;
  --light: #f8f9fa;
  --dark: #002855;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
}

h1, h2, h3, h4, h5, h6 {
  color: unset;
}

h1,
.h1-heading {
  font-size: 36px !important;
  font-weight: 600 !important;
  line-height: 110% !important;
  font-family: "Montserrat", sans-serif !important;
}
h1.app,
.h1-heading.app {
  font-size: 26px !important;
  font-weight: 600 !important;
  line-height: 110% !important;
}

h2,
.h2-heading {
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 105% !important;
  font-family: "Montserrat", sans-serif !important;
}
h2.app,
.h2-heading.app {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 115% !important;
}

h3,
.h3-heading {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 115% !important;
  font-family: "Montserrat", sans-serif !important;
}
h3.app,
.h3-heading.app {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 110% !important;
}

h4,
.h4-heading {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 125% !important;
  font-family: "Montserrat", sans-serif !important;
}

h5,
.h5-heading {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 115% !important;
  font-family: "Montserrat", sans-serif !important;
}

h6,
.h6-heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 115% !important;
  font-family: "Montserrat", sans-serif !important;
}

p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  font-family: "Montserrat", sans-serif !important;
}
p.small, p.copywrite {
  font-size: 14px !important;
  line-height: 20px !important;
}

@media (min-width: 992px) {
  h1,
  .h1-heading {
    font-size: 42px !important;
    line-height: 115% !important;
  }
  h2,
  .h2-heading {
    font-size: 34px !important;
    line-height: 110% !important;
  }
  h3,
  .h3-heading {
    font-size: 27px !important;
    line-height: 125% !important;
  }
}
.btn-primary {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: unset;
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--hunter-blue);
  color: var(--light);
  text-decoration: none;
  border: 2px solid var(--hunter-blue);
  transition: all 0.3s ease;
}
.btn-primary.btn-small {
  width: unset;
  padding: 8px 18px;
  font-size: 14px;
}
.btn-primary.btn-large {
  width: unset;
  padding: 35px 45px;
  font-size: 16px;
}
.btn-primary.btn-xlarge {
  width: unset;
  padding: 20px 50px;
}
.btn-primary.btn-full {
  width: 100%;
  font-size: 16px;
}
.btn-primary.squared {
  border-radius: 10px !important;
}
.btn-primary svg {
  opacity: 0;
  transition: 0.3s ease;
  fill: var(--light);
  margin-left: -35px;
  width: 28px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--light);
  color: var(--hunter-blue);
}
.btn-primary:hover svg, .btn-primary:focus svg, .btn-primary:active svg {
  margin-left: 0;
  opacity: 1;
  padding-left: 0.5rem;
  fill: var(--hunter-blue);
}

.btn-secondary {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: unset;
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--hunter-gold);
  color: var(--hunter-blue);
  text-decoration: none;
  border: 2px solid var(--hunter-gold);
  transition: all 0.3s ease;
}
.btn-secondary.btn-small {
  width: unset;
  padding: 8px 18px;
  font-size: 14px;
}
.btn-secondary.btn-large {
  width: unset;
  padding: 35px 45px;
  font-size: 16px;
}
.btn-secondary.btn-xlarge {
  width: unset;
  padding: 20px 50px;
}
.btn-secondary.btn-full {
  width: 100%;
  font-size: 16px;
}
.btn-secondary.squared {
  border-radius: 10px !important;
}
.btn-secondary.icon span {
  margin-left: -35px;
  opacity: 0;
  transition: 0.3s ease;
}
.btn-secondary.icon span svg {
  fill: var(--hunter-blue);
  margin-left: 8px;
  width: 28px;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: var(--hunter-blue);
  border-color: var(--hunter-blue);
  color: var(--light);
}
.btn-secondary:hover.icon span, .btn-secondary:focus.icon span, .btn-secondary:active.icon span {
  margin-left: 0;
  opacity: 1;
  padding-left: 0.5rem;
}
.btn-secondary:hover.icon span svg, .btn-secondary:focus.icon span svg, .btn-secondary:active.icon span svg {
  fill: var(--light);
}

.btn-light {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: unset;
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--LightGreen);
  color: var(--hunter-blue);
  text-decoration: none;
  border: 2px solid var(--LightGreen);
  transition: all 0.3s ease;
}
.btn-light.btn-small {
  width: unset;
  padding: 8px 18px;
  font-size: 14px;
}
.btn-light.btn-large {
  width: unset;
  padding: 35px 45px;
  font-size: 16px;
}
.btn-light.btn-xlarge {
  width: unset;
  padding: 20px 50px;
}
.btn-light.btn-full {
  width: 100%;
  font-size: 16px;
}
.btn-light.squared {
  border-radius: 10px !important;
}
.btn-light svg {
  opacity: 0;
  transition: 0.3s ease;
  fill: var(--light);
  margin-left: -35px;
  width: 28px;
}
.btn-light:hover, .btn-light:focus, .btn-light:active {
  background-color: var(--hunter-gold);
  color: var(--hunter-blue);
}
.btn-light:hover svg, .btn-light:focus svg, .btn-light:active svg {
  margin-left: 0;
  opacity: 1;
  padding-left: 0.5rem;
  fill: var(--hunter-gold);
}

.btn-primary-side {
  transition: 0.3s !important;
  cursor: pointer !important;
  background-color: var(--hunter-blue) !important;
  font-weight: 600 !important;
  border-radius: 0;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  border: 2px solid var(--hunter-blue) !important;
  color: var(--light) !important;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none !important;
}
.btn-primary-side:hover, .btn-primary-side:active {
  background-color: var(--hunter-gold) !important;
  border: 2px solid var(--hunter-gold) !important;
  color: var(--hunter-blue) !important;
}
.btn-primary-side:focus {
  box-shadow: none !important;
}

.half-button {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  border: 2px solid var(--hunter-blue) !important;
}

a {
  color: var(--dark);
}
a.underlined {
  text-decoration: underline;
}

.top-bar {
  background-color: var(--hunter-blue);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .top-bar-link {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.top-bar .top-bar-link:hover {
  color: var(--hunter-gold);
}
.top-bar .btn-requests {
  background-color: var(--hunter-gold);
  color: var(--hunter-blue);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-bar .btn-requests:hover {
  background-color: var(--hunter-gold-dark);
}

.main-nav {
  background-color: var(--black);
  padding: 15px 0;
}
.main-nav .nav-logo {
  display: flex;
  align-items: center;
}
.main-nav .nav-logo svg {
  height: 32px;
}
@media (min-width: 992px) {
  .main-nav .nav-logo svg {
    height: 36px;
  }
}
.main-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-menu .nav-item {
  position: relative;
}
.main-nav .nav-menu .nav-link {
  color: var(--light);
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav .nav-menu .nav-link:hover {
  color: var(--hunter-gold);
}
.main-nav .nav-menu .nav-link.nav-contact {
  color: var(--hunter-gold);
  font-weight: 700;
}
.main-nav .nav-menu .nav-link.nav-contact:hover {
  color: var(--light);
}
.main-nav .nav-menu .dropdown .nav-link::after {
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -3px;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu-btn .hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--light);
  position: relative;
  transition: background-color 0.3s ease;
}
.mobile-menu-btn .hamburger-icon::before, .mobile-menu-btn .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--light);
  left: 0;
  transition: transform 0.3s ease;
}
.mobile-menu-btn .hamburger-icon::before {
  top: -7px;
}
.mobile-menu-btn .hamburger-icon::after {
  bottom: -7px;
}

.mobile-nav {
  background-color: var(--hunter-blue);
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 1000;
}
.mobile-nav.active {
  max-height: 100vh;
}
.mobile-nav .mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .mobile-menu-list li a {
  display: block;
  color: var(--light);
  text-decoration: none;
  padding: 15px 20px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.mobile-nav .mobile-menu-list li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-main {
  background-color: var(--black);
  color: var(--light);
}
.footer-main .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .footer-main .social-icons {
    justify-content: flex-end;
  }
}
.footer-main .social-icons a {
  color: var(--light);
  transition: color 0.3s ease;
}
.footer-main .social-icons a:hover {
  color: var(--hunter-gold);
}
.footer-main .social-icons a svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom p a:hover {
  color: var(--hunter-gold);
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

main {
  flex: 1 0 auto;
}

.main-content-area {
  margin-bottom: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

html {
  overflow-x: hidden;
}
@media (min-width: 992px) {
  html {
    overflow-x: visible;
  }
}

html, body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif !important;
  margin: 0;
  font-weight: 400;
  line-height: 22px;
  color: var(--Black);
  text-align: left;
  height: 100%;
  transition: 0.3s;
  scroll-behavior: smooth;
}

.site-container-1340 {
  padding-right: 1rem;
  padding-left: 1rem;
  margin: auto;
  position: relative;
  max-width: 1340px;
  width: 100%;
}

.site-container-992 {
  padding-right: 1rem;
  padding-left: 1rem;
  margin: auto;
  position: relative;
  max-width: 992px;
  width: 100%;
}

.container-fluid {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container-fluid {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
}

.ul-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Montserrat", sans-serif !important;
}

ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  font-family: "Montserrat", sans-serif !important;
}

.check-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.check-list ul li {
  position: relative;
  margin-bottom: 16px;
  margin-left: 30px;
  line-height: 19px;
}
.check-list ul li::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free"; /* Specify the font family */
  font-weight: 900; /* Ensure it's using the solid variant */
  content: "\f00c"; /* Unicode for user icon */
  font-size: 1rem;
  color: var(--MRTGreen);
  margin-right: 5px;
  position: absolute;
  left: -30px;
}

@media (min-width: 992px) {
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
}

@media (min-width: 992px) {
  .p-r-24 {
    padding-right: 24px !important;
  }
}

@media (min-width: 992px) {
  .p-l-24 {
    padding-left: 24px !important;
  }
}

.z-15 {
  z-index: 15;
  position: relative;
}

.pl-2 {
  padding-left: 0.75rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.t-c-l {
  text-align: center !important;
}
@media (min-width: 992px) {
  .t-c-l {
    text-align: left !important;
  }
}

.w-80 {
  width: 80% !important;
}

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

.primary-link {
  color: var(--hunter-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}
.primary-link:hover {
  color: var(-- hunter-cyan);
}

.primary-link-alt {
  color: var(--hunter-gold) !important;
  text-decoration: none;
  transition: 0.3s !important;
  font-weight: 700;
}
.primary-link-alt:hover, .primary-link-alt:active {
  color: var(--hunter-blue) !important;
}

.mid-link {
  color: var(--hunter-blue) !important;
  text-decoration: none;
  transition: 0.3s !important;
  font-weight: 700;
}
.mid-link:hover, .mid-link:active {
  color: var(--hunter-blue) !important;
}

.secondary-link {
  color: var(--hunter-blue) !important;
  text-decoration: underline;
  transition: 0.3s !important;
  font-weight: 700;
}
.secondary-link:hover, .secondary-link:active {
  color: var(--DarkGrey) !important;
}

.secondary-link-alt {
  color: var(--hunter-blue) !important;
  transition: 0.3s !important;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  border: 0;
}
.secondary-link-alt:hover, .secondary-link-alt:active {
  color: var(--DarkGrey) !important;
}

.white-link {
  color: var(--light) !important;
  text-decoration: none;
  transition: 0.3s !important;
  font-weight: 400;
  text-transform: uppercase;
}
.white-link:hover, .white-link:active {
  color: var(--hunter-gold) !important;
}

.bold {
  font-weight: 700 !important;
}

.modal-dialog {
  width: 100%;
}
@media (min-width: 992px) {
  .modal-dialog {
    max-width: 850px;
    height: 300px;
  }
}

.text-unset {
  text-transform: unset !important;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.mt-auto {
  margin-top: auto !important;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.row > * {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333333%;
  }
  .col-md-2 {
    width: 16.666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333333%;
  }
  .col-md-5 {
    width: 41.666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333%;
  }
  .col-md-8 {
    width: 66.666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333333%;
  }
  .col-md-11 {
    width: 91.666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333333%;
  }
  .col-lg-2 {
    width: 16.666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333333%;
  }
  .col-lg-5 {
    width: 41.666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333333%;
  }
  .col-lg-8 {
    width: 66.666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.333333%;
  }
  .col-lg-11 {
    width: 91.666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}
.text-center {
  text-align: center !important;
}

.text-white {
  color: #ffffff !important;
}

@media (min-width: 768px) {
  .text-md-end {
    text-align: right !important;
  }
}
.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gray-800 {
  background-color: var(--gray-800) !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.w-100 {
  width: 100% !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--gray-400);
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-control:focus {
  color: var(--gray-900);
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-moz-placeholder {
  color: var(--gray-500);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--gray-500);
  opacity: 1;
}