body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, sans-serif !important;
  background-color: #000837;
  letter-spacing: 1px;
  line-height: 1.3;
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',  monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
  line-height: 1.4;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
ul {
  list-style: none;
}
svg {
  vertical-align: middle;
}


.text-primary {
  color: #002269 !important;
}
.text-secondary {
  color: #F2A709 !important;
}
.bg-primary {
  background-color: #002269 !important;
}
.bg-secondary {
  background-color: #F2A709 !important;
}
.text-blue {
  color: #0252db !important;
}
.text-yellow {
  color: #F2A709 !important;
}
.text-white {
  color: #FFF !important;
}
.text-brown {
  color: #756d6d;
}
.bg-lightblue {
  background-color: #c4e4ef !important;
}
.bg-blue {
  background-color: #0252db !important;
}
.bg-rainbowblue {
  background-color: #00bdfa !important;
}
.bg-rainbowyellow {
  background-color: #F2A709 !important;
}

.jl-container {
  width: 80%;
  margin: auto;
}

.heading-primary {
  font-size: 44px;
  padding: 3rem 4rem;
  color: #FFF;
  text-decoration: underline;
  margin-bottom: 1.5rem;
  text-align: center;
  text-underline-offset: 0.5rem;
}
.md-show {
  display: none !important;
}
.lg-show {
  display: none !important;
}





a, p, span, b, button, input {
  font-size: 18px;
}
@media (max-width: 2000px) {
  .jl-container {
    width: 86%;
  }
}
@media (max-width: 1600px) {
  .jl-container {
    width: 90%;
  }
  a, p, span, b, button, input {
    font-size: 15px;
  }
  .heading-primary {
    font-size: 34px;
    padding: 1.4rem 2rem;
  }
}
@media (max-width: 1200px) {
  .jl-container {
    width: 92%;
  }
  a, p, span, b, button, input {
    font-size: 14px;
  }
  .heading-primary {
    font-size: 28px;
    padding: 1rem 2rem;
  }
  .lg-hide {
    display: none !important;
  }
  .lg-show {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .jl-container {
    width: 94%;
  }
  a, p, span, b, button, input {
    font-size: 14px;
  }
  .heading-primary {
    font-size: 24px;
    padding: 0.8rem 3rem;
    margin-bottom: 0.2rem;
    border-top-right-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
  }
  .md-hide {
    display: none !important;
  }
  .md-show {
    display: block !important;
  }
}
@media (max-width: 600px) {
  .jl-container {
    width: 95%;
  }
  a, p, span, b, button, input {
    font-size: 13px;
  }
  .heading-primary {
    font-size: 22px;
    padding: 0.6rem 2rem;
    margin-bottom: 0.1rem;
    border-top-right-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
  }
  .xs-hide {
    display: none !important;
  }
}
@media (max-width: 400px) {
  .jl-container {
    width: 96%;
  }
  a, p, span, b, button, input {
    font-size: 12px;
  }
  .heading-primary {
    font-size: 18px;
    padding: 0.5rem 1.6rem;
    border-top-right-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
  }
}
@media (max-width: 400px) {
  .jl-container {
    width: 96%;
  }
  a, p, span, b, button, input {
    font-size: 10px;
  }
  .heading-primary {
    font-size: 18px;
    padding: 0.5rem 1.6rem;
    border-top-right-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
  }
}







.jl-navbar {
  background: transparent;
}
.jl-navbar.active {
  background-color: #000837;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.jl-navbar-container {
  width: 80%;
  max-width: 2200px;
  margin: auto;
}

.jl-navbar-main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  padding: 0.6rem 0;
}
.navbar-logo {
  grid-column: 1/2;
}
.navbar-links {
  grid-column: 2/3;
  display: flex;
  justify-content: end;
}

.navbar-logo img {
  max-width: 200px;
  width: 100%;
}
.navbar-links ul {
  display: flex;
  gap: 4rem;
}
.navbar-link {
  color: #FFF;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.navbar-link.active {
  color: #F2A709;
  border-bottom: 4px solid #F2A709;
}
.navbar-link:hover {
  color: #F2A709;
  opacity: 0.9;
  transition: 0.2s;
}
.navbar-hamburger {
  display: none;
}
.navbar-mobile-links {
  display: none;
}
.navbar-mobile {
  display: none;
}

@media (max-width: 1600px) {
  .navbar-links ul {
    gap: 3rem;
  }
  .navbar-container {
    width: 86%;
  }
}

@media (max-width: 1400px) {
  .navbar-links ul {
    gap: 2rem;
  }
  .navbar-container {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .navbar-links ul {
    gap: 1.5rem;
  }
  .navbar-container {
    width: 92%;
  }
  .navbar-link {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .navbar-container {
    width: 94%;
  }
  .jl-navbar-main {
    grid-template-columns: 1fr 2fr;
  }
  .navbar-links {
    display: none;
  }
  .navbar-mobile {
    display: none;
    position: absolute;
    width: 90%;
    max-width: 500px;
    background-color: #FFF;
    top: 0;
    right: 0;
    min-height: 600px;
    height: 100%;
    z-index: 999;
    padding: 2rem 1.5rem;
  }
  .navbar-mobile.active {
    display: block !important;
    transition: all 0.5s;
    background-color: #000837;
    color: #FFF !important;
  }
  .navbar-hamburger {
    display: flex;
    grid-column: 2/3;
    justify-content: end;
    font-size: 36px;
    color: #FFF;
    margin-right: 1rem;
  }
  .navbar-mobile img {
    padding: 0 3rem;
    margin-top: 2rem;
  }
  .navbar-mobile-close {
    display: flex;
    justify-content: end;
    font-size: 36px;
    color: #FFF;
    margin-right: 1rem;
    position: absolute;
    top: 2rem;
    right: 1rem;
  }
  .navbar-mobile ul li {
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-mobile ul li a {
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
  }
  .navbar-main {
    grid-template-columns: 1fr 2fr;
  }
  .navbar-logo img {
    max-width: 240px;
  }
  .footer-address div {
    margin-top: 2rem;
  }
  .navbar-mobile-links.none {
    display: none;
  }
  .navbar-mobile-links {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 300px;
    top: 0;
    background-color: #000837;
    padding: 2rem 1rem;
    right: 0;
    border: 1px solid #000837;
    box-shadow: 0px 0px 6px #000837;
    overflow: hidden;
    z-index: 99;
  }
  .navbar-mobile-links.show {
    transition: 0.5s;
    display: block;
  }
  .navbar-mobile-links ul {
    padding: 10px;
    margin-top: 2rem;
  }
  .navbar-mobile-links ul li {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .navbar-mobile ul li {
    margin-top: 0.8rem;
  }
  .navbar-mobile ul li a {
    font-size: 17px;
  }
  .navbar-mobile {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .navbar-container {
    width: 96%;
  }
  .navbar-mobile {
    max-width: 300px;
    padding: 1.5rem 1rem;
  }
  .navbar-hamburger {
    font-size: 24px;
  }
  .navbar-mobile-close {
    font-size: 24px;
  }
  .navbar-main {
    grid-template-columns: 1fr 1fr;
  }
  .navbar-logo img {
    max-width: 200px;
  }
  .navbar-mobile ul li {
    margin-top: 0.7rem;
  }
  .navbar-mobile ul li a {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .navbar-container {
    width: 98%;
  }
  .navbar-hamburger {
    font-size: 20px;
  }
  .navbar-mobile-close {
    font-size: 20px;
  }
  .navbar-logo img {
    max-width: 180px;
  }
  .navbar-mobile ul li {
    margin-top: 0.6rem;
  }
  .navbar-mobile ul li a {
    font-size: 14px;
  }
}

@media (max-width: 300px) {
  .navbar-hamburger {
    font-size: 18px;
  }
  .navbar-mobile-close {
    font-size: 18px;
  }
  .navbar-mobile ul li a {
    font-size: 13px;
  }
}


/* footer */

.footer .footer-main {
  background-color: #002269;
}
.footer .footer-sec {
  background-color: #000837;
}
.footer-main .container-footer-main {
  padding: 3rem 1rem;
}
.footer-main .footer-about {
  padding: 0 1rem;
}
.footer-main .footer-about img {
  width: 100%;
  max-width: 300px;
}
.footer-main .footer-about p {
  color: #FFF;
  padding-top: 1rem;
}
.footer-services div {
  color: #fff;
  font-size: 24px;
  margin-bottom: 1rem;
}
.footer-services p {
  color: #fff;
  margin-bottom: 0.3rem;
}
.footer-address div {
  color: #fff;
  font-size: 24px;
  margin-bottom: 1rem;
}
.footer-address p {
  color: #fff;
  margin-bottom: 1rem;
}
.footer-address span {
  color: #fff;
  margin-bottom: 1rem;
  display: block;
  font-size: 18px;
}

.footer-sec .footer-sec-main {
  padding: 1rem 0;
  color: #FFF;
}


@media (max-width: 900px) {
  .footer-main .footer-about img {
    max-width: 80%;
  }
  .footer-address {
    padding: 0 1rem;
  }
  .footer-address span {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .footer-sec .footer-sec-main {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .footer-address div {
    font-size: 15px;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
  }
  .footer-main .footer-about img {
    width: 80%;
    max-width: 200px;
  }
  .footer-address span {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  .footer-main .container-footer-main {
    padding: 1rem 0;
  }
  .footer-sec .footer-sec-main {
    font-size: 12px;
  }
}



