<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --default-font-color: #041735;
  --default-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --default-font-size: 16px;
  --default-font-weight: 400;

  --color-primary: #01aeef;
  --color-accent: #2f3192;
  --color-warning: #cd8e29;

  --link-color: #337ab7;

  --black: #041735;
  --white: #ffffff;
  --red: #e87777;
  --light-gray: #dddddd;
  --lighter-gray: #eeeeee;
  --dark-gray: #ccc;
  --darker-gray: #63666d;

  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 3px 5px rgba(0, 0, 0, 0.3);

  --tbw-cell-vertical-padding: 4px;
  --tbw-cell-horizontal-padding: 8px;
  --tbw-cell-line-height: 1.5em;
}

* {
  border-radius: 0;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 98%;
}

body {
  /* background: #fff; */
  background: #f2f4f4;
  color: var(--default-font-color);
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-family: var(--default-font);
  font-weight: 600;
}

a,
a:active {
  color: var(--color-primary);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul.infolist,
ol.infolist {
  margin-bottom: 2em;
  padding-left: 1.5em;
}
ul.infolist li,
ol.infolist li {
  margin-bottom: 0.3em;
}

.text-info {
  color: var(--color-primary) !important;
}

.cursor-pointer {
  cursor: pointer;
}

table tr th,
table tr td {
  font-size: 11px;
}
table tr th {
  background: var(--light-gray) !important;
  border-bottom: 0 !important;
  border-color: var(--dark-gray) !important;
  padding: 4px 6px 6px !important;
}
table tr td {
  padding: 8px 8px 4px !important;
}
table tr td .btn {
  font-size: 0.85em !important;
  padding: 4px 8px;
  position: relative;
  top: -2px;
}

/* Forms */
legend {
  background: var(--lighter-gray);
  margin-bottom: 1em;
  padding: 10px;
}
.col-form-label {
  color: var(--black);
  font-weight: 600;
}
.col-form-label.required {
  position: relative;
}
.col-form-label.required::after {
  color: var(--red);
  content: "*";
  font-size: 12px;
  position: absolute;
  top: 1px;
  right: 0px;
  vertical-align: super;
}
.form-horizontal .col-form-label {
  text-align: end;
}
.form-horizontal .form-check {
  padding-top: 6px;
}
.form-control,
.form-select {
  border-radius: 2px !important;
  border: 1px solid #ddd;
  box-shadow: none !important;
  color: #333;
  cursor: pointer;
  font-size: 0.95em;
  outline: none !important;
}
.form-select {
  box-shadow: none !important;
}
.form-control::placeholder {
  color: var(--dark-gray);
}
.form-control:is(:active, :focus) {
  box-shadow: none;
  outline: none;
}
.form-control:hover {
  border-color: #ccc !important;
}
.form-floating {
  overflow: hidden;
}
.form-floating &gt; label {
  /* background: var(--white); */
  height: auto;
  padding: 0 0.75rem;
  top: 0.9rem;
  transition: none;
}
.form-floating &gt; .form-control {
  padding: 2rem 0.75rem 1rem !important;
}

input.datepicker {
  background: url(../img/calendar.png) no-repeat 5% center / 20px;
  padding-left: 3em;
}

/* Richtext editors */
.rich-content ul,
.rich-content ol {
  margin-left: 1em;
}
.rich-content :is(h1, h2, h3, h4, h5) {
  font-weight: normal;
}
.rich-content h3 {
  font-size: 20px;
}

/* Modals */
.modal-header {
  padding: 0.5rem 1rem;
}
.modal-header .btn-close {
  margin-right: 0.25rem;
}
.modal-backdrop {
  z-index: 10000;
}
.modal-open .modal {
  z-index: 10001;
}

/* Buttons */
.btn {
  border-radius: 3px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}
.btn-block {
  width: 100%;
}
.btn &gt; i {
  margin-right: 4px;
}
.btn:is(:focus, :active) {
  box-shadow: none;
}
.btn + .btn {
  margin-left: 4px !important;
}
.btn-group .btn + .btn {
  margin-left: 0 !important;
}

.tab-pane {
  background: #fff;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 1em;
}

.alert {
  border-radius: 0;
  font-size: 0.95em;
  margin-bottom: 10px;
  padding: 6px 15px;
  position: relative;
}
.alert-dismissible .btn-close {
  margin-top: 3px;
  padding: 1rem;
}

.panel,
.input-group-addon {
  border-radius: 2px;
}
.panel h3 {
  font-size: 1.1em;
}

/* Datatables */
table.dataTable {
  margin: 1em 0 0.5em !important;
}
.dt-container {
  clear: both;
}
.dt-container .buttons-html5,
.dt-container .buttons-page-length {
  font-size: 0.95em;
  padding: 0.3rem 0.75rem;
}
.dt-container .dt-search {
  float: right;
}
.dt-container .dt-info,
.dt-container .dt-paging {
  font-size: 12px;
}
.dt-container .dt-info {
  float: left;
  padding-top: 5px !important;
}
.dt-container .dt-paging {
  float: right;
}
.dt-buttons .btn {
  background: transparent;
  border-color: #ccc;
  color: #333;
  margin-right: 5px;
}
.dt-paging .dt-paging-button .page-link {
  padding: 2px 12px;
}
table.dataTable .dt-type-numeric,
table.dataTable .dt-type-date {
  text-align: left !important;
}

/* Carousel */
.slick-slider {
  max-height: 95vh;
  overflow: hidden;
}
.slick-slide img {
  width: 100%;
}

/* Images */
.img-center {
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}

/* Containers */
.container {
  max-width: 1440px;
}
.container-xl {
  max-width: 1440px;
}
.container-lg {
  max-width: 1280px;
}
.container-md {
  max-width: 960px;
}
.container-sm {
  max-width: 768px;
}
.container-xs {
  margin: 0 auto;
  max-width: 576px;
}
.container .container {
  max-width: 100%;
}
.container .jumbotron {
  border-radius: 0;
}

.accordion-button:not(.collapsed) {
  color: var(--link-color);
}
.accordion-item,
.accordion-item:not(:first-of-type) {
  border: 0;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.breadcrumb {
  background: transparent;
  border-radius: 0;
  font-size: 11px;
  margin: 0 0 2px;
  padding: 0;
}
.breadcrumb-item &gt; a {
  text-decoration: none;
}

.page-wrapper {
  padding-bottom: 5em;
}

.wrapper {
  padding: 0;
  min-height: 100vh;
}

.page-header {
  border-bottom: 0;
  margin: 1em 0 0;
  padding: 0;
}
.page-header h1 {
  color: var(--black);
  font-size: 2em;
  margin: 0;
}
.page-header .jumbotron {
  padding: 2em 0;
}
.page-header .jumbotron h1 {
  font-size: 2.5em;
  text-align: center;
}
.page-header .jumbotron p {
  font-size: 1.5em;
  margin-top: 1em;
}

.page-content {
  background: var(--white);
  min-height: 30vh;
  padding: 1em;
}
.page-content::after {
  display: block;
  clear: both;
  content: "";
}

.jumbotron {
  padding: 5em 1em;
}

/* Cards */
.card {
  position: relative;
}
.card .btn {
  /* font-size: 11px; */
}
.card-img-top,
.card-img-bottom {
  height: 12rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.card-body {
  font-size: 14px;
}

/* Navigation */
nav.navbar {
  background-color: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow-light);
  margin: 0;
  padding: 0.5em 1em;
}
.navbar-brand img {
  height: 10rem;
  max-height: 3.5rem;
}

.navbar-toggler {
  padding-right: 0;
}
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}
.navbar-toggler .icon-bar {
  background: var(--color-accent);
  display: block;
  height: 2px;
  width: 28px;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 6px;
}

.navbar-nav .nav-link {
  padding: 10px 12px !important;
}
.nav-item {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
}
.navbar-nav .nav-item:hover .nav-link:not(.btn-cta),
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus,
.home-bd .home-lnk,
.about-bd .about-lnk,
.business-bd .business-lnk,
.personal-bd .personal-lnk,
.services-bd .services-lnk,
.contact-bd .contact-lnk,
.media-bd .media-lnk {
  color: var(--color-primary) !important;
}
.nav-link.btn,
.nav-link.btn:active,
.nav-link.btn:focus,
.nav-link.btn:hover {
  background-color: var(--color-primary);
  border-radius: 20px !important;
  font-size: 14px;
  padding: 8px 20px !important;
  text-transform: capitalize;
}
.nav-link.btn-cta,
.nav-link.btn-cta:active,
.nav-link.btn-cta:focus,
.nav-link.btn-cta:hover {
  color: var(--white) !important;
}
.nav-link.btn-cart,
.nav-link.btn-cart:is(:focus, :active, :hover) {
  background-color: transparent !important;
  color: var(--black) !important;
}
.nav-link.btn-auth {
  background-color: var(--lighter-gray) !important;
}

.dropdown-menu {
  overflow: hidden;
  padding: 0;
}
.dropdown-menu .dropdown-item {
  font-size: 13px;
  padding: 0.5em 1em;
}
.site-bd .dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-item {
  font-size: var(--default-font-size);
}
.dropdown-divider:not(:empty) {
  background-color: #eee;
  border: 0;
  font-size: 10px;
  font-weight: bold;
  height: auto;
  margin: 0;
  padding: 2px 15px;
  text-transform: uppercase;
}

/* Auth */
.auth-bd {
  background: var(--lighter-gray);
}
.login-form {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin: 5% auto;
  padding: 1em 3em;
  width: 25em;
}
.login-form h1 {
  margin-bottom: 1em;
}
.login-form .col-form-label {
  margin-bottom: 2px;
}

/* Home */
.site-bd .page-wrapper {
  margin-top: 4rem;
}

.carousel-inner {
  overflow: hidden;
}
.carousel-item {
  cursor: pointer;
}
.carousel-item img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}
.carousel-caption {
  background: transparent;
  /* background: rgba(69, 168, 240, 0.8); */
  /* background: white; */
  /* box-shadow: var(--shadow-dark); */
  color: var(--white);
  left: 10%;
  right: auto;
  text-align: start;
}
.carousel-caption h5 {
  color: var(--white) !important;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: var(--shadow-dark);
}
.carousel-caption p {
  /* color: #666 !important; */
  color: var(--white) !important;
  font-size: 1.2rem !important;
  /* font-weight: lighter; */
  margin-top: 0 !important;
  max-width: 480px;
  text-shadow: var(--shadow-dark);
}
.carousel-caption button {
  border: 0 !important;
  outline: none !important;
}

.jumbotron-home {
  border-radius: 5px;
  padding: 2em 0;
}
.jumbotron-home h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 1em;
}
.jumbotron-home p {
  color: var(--darker-gray);
  font-size: 1.4em;
  line-height: 30px;
  margin-top: 1em;
}

section {
  padding: 4em 0;
}
section .container {
  padding: 0 1rem;
}
section h2 {
  font-size: 3em;
  margin: 0 0 1em;
  position: relative;
  text-align: center;
}
section h2:before {
  background: var(--black);
  margin: 0 auto;
  height: 5px;
  width: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
section p {
  color: var(--darker-gray);
}

.section-light {
  background-color: var(--white);
}

.section-dark {
  background-color: var(--color-accent);
  color: var(--white);
}
.section-dark h2 {
  color: var(--white);
}

/* Insurance */
.insurance-box {
  background: var(--white);
  border-radius: 5px;
  margin-bottom: 1em;
  text-align: center;
}
.insurance-box:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in;
}
.insurance-box a {
  display: block;
  padding: 1em;
  text-decoration: none;
}
.insurance-box img {
  height: 72px;
  margin-bottom: 1em;
  max-width: 130px;
  object-fit: contain;
  padding: 10px;
}
.insurance-box h4 {
  font-size: 1.2em;
  font-weight: 600;
  height: 2em;
  margin-bottom: 0.5em;
}
.product-banner {
  height: 60vh;
}

/* About */
.core-values {
  list-style: none;
  padding: 0;
}
.core-values li {
  padding-left: 40px;
  position: relative;
}
.core-values li strong {
  color: var(--color-primary);
  font-size: 4em;
  position: absolute;
  left: 0;
  top: 15px;
}
.core-values li span {
  font-weight: 600;
  text-decoration: underline;
}

/* FAQs */
.faq-box {
  overflow: hidden;
}
.faq-box h4 {
  font-size: 1.2em;
}
.faq-box ul {
  color: var(--darker-gray);
  padding-left: 1em;
}

/* Testimonials */
.testimonial-box {
  /* background: url(../img/quote.png) no-repeat 2em 1em / 48px var(--white); */
  margin-bottom: 1em;
  padding: 1em;
}
.testimonial-box h5 {
  color: var(--black);
}
.rating-stars {
  float: right;
}
.rating-stars i {
  background: #fdd836;
  color: var(--white);
  font-size: 1rem;
  padding: 2px 5px 3px;
}

/* Blog */
.blog-jumbotron {
  background: no-repeat center / cover;
  margin-bottom: 2em;
  padding: 8em 0;
  position: relative;
  text-align: center;
}

.blog-jumbotron-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.blog-jumbotron .container {
  position: relative;
  z-index: 2;
}

.blog-jumbotron h1 {
  color: #fff !important;
  font-size: 2.5em;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.blog-jumbotron p {
  color: #fff;
  font-size: 1.2em;
  line-height: 1.8em;
  margin: 0 auto;
  max-width: 640px;
}

.article {
  margin-bottom: 2em;
}
.article &gt; a {
  background: #fff;
  border-radius: 5px;
  /* border: 1px solid #ddd; */
  box-shadow: var(--shadow-dark);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.article img {
  height: 15em;
  width: 100%;
  object-fit: cover;
}
.article h4 {
  color: #111;
  font-size: 1.2em;
  font-weight: 400;
  height: 2.5em;
  line-height: 24px;
}
.article-title {
  margin-bottom: 2rem;
}
.article-info {
  padding: 1em;
}

.article-featured img {
  height: 25em;
}
.article-featured .article-info {
  background: var(--white);
  color: var(--black);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.article-featured h4 {
  font-size: 1.5em;
  line-height: 30px;
}

.article-header .container {
  background: var(--white);
  border-radius: 3px;
  margin-bottom: 1em;
  padding: 2em;
  text-align: center;
}
.article-header h1 {
  color: var(--black);
}
.article-image {
  border-radius: 3px;
  height: 40vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 3em;
}

.blog-meta h5 {
  font-size: 0.9em;
  margin-bottom: 4px;
}

.blog-meta p {
  color: #555;
  margin-bottom: 2em;
}

.post-title {
  font-size: 1.2em !important;
  padding: 1.3em 1em !important;
}

.post-detail {
  padding-right: 3em;
}

.post-actions .panel-body {
  background: transparent;
  padding: 1em 2em;
}

a.jssocials-share-link {
  text-decoration: none;
}

/* Cart */
.table-cart {
  background-color: var(--white);
}
.table-cart tr {
  margin-bottom: 5px;
}
.table-cart tr th,
.table-cart tr td {
  font-size: 1rem;
}
.table-cart tfoot tr td {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--white);
  color: var(--black);
  padding: 2rem 0 0;
  position: relative;
}
footer h5 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
footer ul li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 5px;
}
footer ul li a {
  color: var(--darker-gray);
  font-size: 0.9rem;
  text-decoration: none;
}
footer ul li a:hover {
  color: var(--color-primary);
}
.footer-logo {
  color: var(--darker-gray);
  margin-top: 5%;
}
.footer-logo img {
  margin-bottom: 2rem;
  max-width: 15rem;
}
footer .footnote {
  border-top: 1px solid var(--light-gray);
  color: var(--darker-gray);
  font-size: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 0 2rem;
}

.whatsapp-chat {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.whatsapp-chat .dropdown-menu {
  box-shadow: var(--shadow-dark);
  right: 1rem !important;
  z-index: 1000;
}
.whatsapp-chat .dropdown-menu li {
  padding: 1rem;
  max-width: 15rem;
  width: 100%;
}
.whatsapp-chat .dropdown-menu li svg {
  margin-bottom: 1rem;
}
.whatsapp-chat .dropdown-menu li p {
  font-size: 13px;
  line-height: 18px;
}
.whatsapp-chat button {
  border: 0 !important;
}
.whatsapp-chat .dropdown-toggle::after {
  display: none;
}
.whatsapp-chat img {
  max-width: 56px;
}

@media (max-width: 992px) {
  body {
    padding-top: 0;
  }
  .navbar-custom .navbar-brand {
    width: auto !important;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .form-horizontal .col-form-label {
    text-align: start !important;
    width: auto;
  }
}
</pre></body></html>