<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #16284c;
  --primary-color-light: #196eb7;
  --secondary-color: #196eb7;
  --secondary-color-light: #96a81e;
  --text-color: #555;
}

/* accessibility */
a.skip-link {
    position: absolute;
    top: -2rem;
    padding: 0 0.5rem;
    background: var(--primary-color);
    color: #fff !important;
    font-size: small;
    height: 2rem;
    line-height: 2rem;
    display: block;
    transition: top 1s ease-out;
    outline: none;
    z-index: 10000;
}
a.skip-link:focus {
    top: 0;
    transition: top 0.1s;
}

/* typography */
body {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--text-color);
}
.sans-serif {
  font-family: proxima-nova, sans-serif !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: ff-ernestine-pro, serif;
  font-weight: 700;
  text-transform: uppercase;
}
.btn {
   border: 0;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   padding-top: .75rem;
   padding-bottom: .75rem;
   padding: 1rem 1.25rem;
   line-height: 1;
}
.text-normal {
  text-transform: none !important;
}
.display-4 {
    font-size: 2.25rem;
}
@media (min-width: 576px) {
  .display-4 {
      font-size: 3.5rem;
  }
}

/* colors */
body {
  color: var(--primary-color);
}
a {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
a:hover {
    color: var(--secondary-color-light);
}
.bg-primary a {
  color: var(--secondary-color-light);
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-secondary-light {
    color: var(--secondary-color-light) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-primary, a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}
.bg-secondary, a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: white !important;
}
.bg-light {
  background-color: #f2f2f2 !important;
}
.bg-secondary-light {
  background-color: var(--secondary-color-light) !important;
}
.btn-primary, .btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 0;
}
.border-light {
    border-color: rgba(255, 255, 255, .3) !important;
}


/* layout */
.p-6 {
    padding: 4.5rem !important;
}
.pt-6, .py-6 {
    padding-top: 4.5rem !important;
}
.pb-6, .py-6 {
	padding-bottom: 4.5rem !important;
}
.p-7 {
    padding: 6rem !important;
}
.pt-7, .py-7 {
    padding-top: 6rem !important;
}
.pb-7, .py-7 {
    padding-bottom: 6rem !important;
}
.p-8 {
    padding: 8rem !important;
}
.pt-8, .py-8 {
    padding-top: 8rem !important;
}
.pb-8, .py-8 {
  padding-bottom: 8rem !important;
}
.pt-9, .py-9 {
    padding-top: 9rem !important;
}
.pb-9, .py-9 {
  padding-bottom: 9rem !important;
}
hr {
  
}
@media (min-width: 768px) {
  .p-md-7 {
      padding: 6rem !important;
  }
  .pt-md-7, .py-md-7 {
      padding-top: 6rem !important;
  }
  .pb-md-7, .py-md-7 {
      padding-bottom: 6rem !important;
  }
  .p-md-8 {
      padding: 8rem !important;
  }
  .pt-md-8, .py-md-8 {
      padding-top: 8rem !important;
  }
  .pb-md-8, .py-md-8 {
      padding-bottom: 8rem !important;
  }
}
@media (min-width: 992px) {
  .container-lg-fluid {
      width: 100%;
      max-width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
  .p-lg-6 {
      padding: 4.5rem !important;
  }
  .pt-lg-6, .py-lg-6 {
      padding-top: 4.5rem !important;
  }
  .pb-lg-6, .py-lg-6 {
      padding-bottom: 4.5rem !important;
  }
  .p-lg-7 {
      padding: 6rem !important;
  }
  .pt-lg-7, .py-lg-7 {
      padding-top: 6rem !important;
  }
  .pb-lg-7, .py-lg-7 {
      padding-bottom: 6rem !important;
  }




  .p-lg-8 {
      padding: 8rem !important;
  }
  .pt-lg-8, .py-lg-8 {
      padding-top: 8rem !important;
  }
  .pb-lg-8, .py-lg-8 {
      padding-bottom: 8rem !important;
  }
  .mt-lg-n6, .my-lg-n6 {
      margin-top: -5.5rem!important;
  }
  .mt-lg-n7, .my-lg-n7 {
      margin-top: -7rem!important;
  }
}
@media (min-width: 1200px) {
  .container-xl-fluid {
      width: 100%;
      max-width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
}

/* buttons */
.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-size: 0.9rem;
}

/* utilities */
.no-wrap {
  white-space: nowrap;
}
.no-style, .no-style:hover {
  text-decoration: none;
  color: inherit;
}
.lh-1 {
    line-height: 1;
}
.ls-1 {
  letter-spacing: 0.1em;
}
.ls-2 {
  letter-spacing: 0.2em;
}
.section {
  position: relative;
  overflow: hidden;
}
.form-control {
    border: 0;
    border-radius: 0;
    height: auto;
    padding: 1.25rem 1.4rem;
}
.form-group {
    margin-bottom: .75rem;
}
.section__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.separate:after {
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: var(--secondary-color);
    margin: 1rem auto;
}
.text-white .separate:after {
  background: #fff;
}


/* topbar */
#topbar {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  background: white;
}
#topbar span {
    display: inline-block;
}

#topbar span:not(:last-child) {
    padding-right: 1rem;
}

#topbar span:not(:last-child):after {
    content: "\2022";
    padding-left: 1rem;
    color: var(--secondary-color);
}
#topbar .social-icons svg path {
    fill: var(--secondary-color);
}

#topbar .social-icons a .custom-svg {
    height: 16px;
    transform: translateY(-2px);
}
#topbar .social-icons a {
    display: inline-block;
    padding-right: .5rem;
}

#topbar .social-icons {
    margin-right: 1rem;
}

/* navbar */
.navbar {
  z-index: 1;
  background: white;
  padding: 1.75rem 1rem;
}
.navbar-brand {
    width: 195px;
    height: 48px;
}
.navbar-light .navbar-nav .nav-link {
    font-weight: 700;
    color: var(--text-color) !important;
}
.dropdown-menu {
    top: 179%;
    background-color: var(--primary-color);
    color: white;
    border: 0;
    border-radius: 0;
    padding: .5rem;
    margin: 0;
}

.dropdown-item {
    color: white;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--primary-color-light);
    color: white;
}

.dropdown-item:not(:last-child) {
    margin-bottom: 2px;
}
.nav-item {
    position: relative;
}
@keyframes grow {
  from {
    height: 0;
  }
  to {
    height: 20px;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-left: 1rem;
      padding-right: 1rem;
  }  
  .navbar-light .navbar-nav .nav-item:hover:after, 
  .navbar-light .navbar-nav .nav-item.show:after {
      content: "";
      width: 1px;
      animation: grow .5s forwards;
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      background: var(--secondary-color);
      margin: auto;
  }
}

/* hero */
.line:after {
  content: "";
  width: 70px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  text-align: center;
  margin: 1rem 0 1.5rem;
}
.text-center .line:after {
  margin: 1rem auto 1.5rem;
}

/* icons */
svg.gradient path {
  fill: url(#lg);
}


/* calculators */
.calculators .fancybox-slide--iframe .fancybox-content {
	width  : 940px;
	height : 100%;
	max-width  : 90%;
	margin: 0;
}
.calculator-buttons &gt; button {
  padding: 1.5rem;
  width: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem 1rem 0;
  border: none;
}

/* accordion */
.accordion&gt;.card&gt;.card-header {
    background: transparent;
    border: 0;
    padding: 1.5rem 1.25rem;
}
.accordion&gt;.card {
    background: transparent;
    border-width: 0 0 1px;
    border-radius: 0;
}
.accordion&gt;.card&gt;.card-header h4 a:before {


    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    display: none;
}

.accordion&gt;.card&gt;.card-header h4 a {
    color: white;
}

.accordion&gt;.card&gt;.card-header h4 {
    text-transform: none;
    position: relative;
    padding-left: 37px;
}

.accordion&gt;.card&gt;.card-header h4 a[aria-expanded=true]:before {
    content: "\f068";
    transform: rotate(0deg);
}
.accordion&gt;.card&gt;.card-header h4 a svg {
  width: 15px;
  position: absolute;
  left: 0;
  transform: scale(0.7);
  top: 3%;
}
.accordion&gt;.card .card-body {
    padding-left: 58px;
    color: #fff;
}

.accordion&gt;.card {
    border-bottom: 1px solid rgb(255, 255, 255, .3) !important;
}

.accordion&gt;.card&gt;.card-header h4 a:hover {
    text-decoration: none;
}

/* team carousel */
.owl-carousel .owl-stage-outer {
    padding-bottom: 2rem;
}
.owl-theme .owl-nav [class*=owl-] {
  color: var(--secondary-color) !important;
  width: 65px;
  height: 65px;
  background: white !important;
}
.owl-theme .owl-nav .disabled {
    opacity: 1;
}
.owl-theme .owl-nav [class*=owl-]:focus {
    outline: none;
}
a.card {
  border: 0;
  box-shadow: 0 0 35px rgba(10, 10, 10,0.08);
  border-radius: 4px;
  color: var(--secondary);
}
a.card img {
    filter: grayscale(100%);
    transition: opacity .3s ease-out,-webkit-transform .3s ease-out,-webkit-filter .3s ease-out;
}
a.card:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
    opacity: 0.5;
}
a.card .image-wrapper {
    overflow: hidden;
    transition: background .3s,color .3s,border-color .3s;
    border-radius: 4px 4px 0 0;
}
a.card:hover .image-wrapper {
    background: black;
}
a.card .card-body {
    text-align: center;
}
a.card:hover {
    text-decoration: none;
}
a.card .card-body .card-title {
    color: var(--primary-color);
}

/* footer */
.footer a {
    color: white;
    text-decoration: underline;
}</pre></body></html>