<style>

/* ============================== */
/* BODY */
/* ============================== */

body {
  font-family: "Museo-Sans", sans-serif;
  color: #241F20;
}

h1 {
  font-family: "Museo", serif;
  font-size: 64px;
  font-weight: 900;
}

h2 {
  font-size: 50px;
  font-weight: 700;
}

p {
  font-size: 18px;
}

p.lead {
  font-size: 18px;
}

.container-fluid {
  padding: 0;
}

.baf-primary {
  background-color: #117BC0;
  color: #fff;
}


/* ============================== */
/* NAVIGATION */
/* ============================== */

#mainNavigation .hs-menu-wrapper > ul > li > a > i.bi {
  display: none;
}

.navbar .container {
  margin: auto;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  background-color: #117BC0;
}

.site-header .hs-menu-wrapper > ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .hs-menu-wrapper .hs-menu-item {
  position: relative;
  list-style: none;
}

.site-header .hs-menu-wrapper .hs-menu-item > a {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s ease;
}


/* ============================== */
/* MAIN MENU UNDERLINE */
/* ============================== */

/*
.site-header .hs-menu-wrapper > ul > li:not(:last-child) > a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #FFFFFF;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.25s ease;
}

.site-header .hs-menu-wrapper > ul > li:not(:last-child) > a:hover::after,
.site-header .hs-menu-wrapper > ul > li:not(:last-child):hover > a::after {
transform: scaleX(1);
}
*/

/* ============================== */
/* SUBMENU / POPUP */
/* ============================== */

.site-header .hs-menu-wrapper .hs-menu-children-wrapper {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);

  display: block;
  min-width: 270px;
  margin: 0;
  padding: 20px;
  background-color: #E6F0F6;
  border-radius: 30px;

  list-style: none;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}


/* ============================== */
/* SUBMENU CIRCLE */
/* ============================== */

.site-header .hs-menu-wrapper .hs-menu-children-wrapper::before {
  content: "";

  position: absolute;
  top: -18px;
  left: 50%;

  width: 56px;
  height: 56px;

  background-color: #E6F0F6;
  border-radius: 50%;

  transform: translateX(-50%);

  z-index: -1;
}


/* ============================== */
/* SHOW SUBMENU */
/* ============================== */

.site-header .hs-menu-wrapper .hs-item-has-children:hover > .hs-menu-children-wrapper,
.site-header .hs-menu-wrapper .hs-item-has-children:focus-within > .hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* ============================== */
/* SUBMENU ITEMS */
/* ============================== */

.site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item {
  width: 100%;
}

.site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a {
  display: block;
  width: 100%;

  padding: 10px 14px;

  color: #241F20;

  font-size: 16px;
  font-weight: 500;

  text-decoration: none;

  border-radius: 15px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}


/* ============================== */
/* SUBMENU HOVER */
/* ============================== */

.site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a:hover,
.site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a:focus {
  color: #2C66B6;
  background-color: #FFFFFF;
}


/* ============================== */
/* REMOVE SUBMENU UNDERLINE */
/* ============================== */

.site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a::after {
  display: none;
}


/* ============================== */
/* BOOK NOW CTA */
/* ============================== */

.site-header .hs-menu-wrapper > ul > li:last-child > a {
  display: inline-block;

  padding: 0.5rem 1.5rem;

  color: #fff;

  background-color: #E22E26;

  border: 3px solid #E22E26;
  border-radius: 150px;

  font-weight: 600;
  text-decoration: none;

  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.site-header .hs-menu-wrapper > ul > li:last-child > a:hover,
.site-header .hs-menu-wrapper > ul > li:last-child > a:focus {
  color: #F23E36;

  background-color: #ffffff;

  border-color: #F23E36;
  border-width: 3px;
}

.site-header .hs-menu-wrapper > ul > li:last-child > a:focus {
  box-shadow: 0 0 0 0.25rem rgba(45, 54, 72, 0.25);
}


/* ============================== */
/* MEDIUM DEVICES / MOBILE */
/* ============================== */

@media (max-width: 991.98px) {
  #mainNavigation .hs-menu-wrapper > ul > li > a > i.bi {
    display: inline-block;
  }

  .container {
    padding: 20px 40px;
  }
  .site-header .hs-menu-wrapper .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .site-header .hs-menu-wrapper .hs-item-has-children:focus-within > .hs-menu-children-wrapper {
    transform: none;
  }

  .navbar.navbar-expand-lg {
    padding-bottom: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background-color: #117BC0;
  }

  .navbar .container {
    width: 100%;
    max-width: 100%;
  }

  .navbar-brand {
    margin: auto;
    padding-bottom: 12px;
  }

  .navbar-toggler {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1050;

    border: 0;
    padding: 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    padding: 20px 40px;
    background-color: #FFFFFF;
  }

  .site-header .hs-menu-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background-color: #FFFFFF;
  }

  .site-header .hs-menu-wrapper > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    width: 100%;
    max-width: 300px;

    margin: 0 auto;
    padding: 1.5rem 0;

    background-color: #FFFFFF;
  }

  .site-header .hs-menu-wrapper > ul > li {
    width: 100%;
    max-width: 300px;
  }


  /* ============================== */
  /* MAIN CATEGORIES */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:not(:last-child) > a {
    display: flex;
    align-items: center;

    width: 100%;
    padding: 8px 0;

    color: #117BC0;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;

    transition: none;
  }


  /* ============================== */
  /* MOBILE ICON ELEMENTS */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li > a > i.bi {
    display: inline-block;

    width: 24px;
    margin-right: 10px;

    color: #117BC0;

    font-size: 20px;
    line-height: 1;

    flex-shrink: 0;
  }


  /* ============================== */
  /* REMOVE OLD PSEUDO ICON */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li.hs-item-has-children > a::before {
    content: none !important;
    display: none !important;
  }


  /* ============================== */
  /* REMOVE DESKTOP UNDERLINE */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:not(:last-child) > a::after {
    display: none;
  }


  /* ============================== */
  /* MOBILE SUBMENU */
  /* ============================== */

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper {
    position: static;

    display: block;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0 0 0 30px;

    background-color: #FFFFFF;

    border-radius: 0;

    box-shadow: none;

    transform: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition: none;
  }


  /* ============================== */
  /* HIDE DESKTOP CIRCLE ON MOBILE */
  /* ============================== */

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper::before {
    display: none;
  }


  /* ============================== */
  /* MOBILE SUBMENU LINKS */
  /* ============================== */

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a {
    display: block;

    width: 100%;

    padding: 1px 0;

    color: #241F20;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    border-radius: 0;

    transition: none;
  }

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a:hover,
  .site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a:focus {
    color: #241F20;
    background-color: transparent;
  }


  /* ============================== */
  /* BOOK NOW CTA */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:last-child {
    display: flex;
    justify-content: center;

    width: 100%;

    margin-top: 1rem;
  }

  .site-header .hs-menu-wrapper > ul > li:last-child > a {
    width: fit-content;
    padding: 0.5rem 1.5rem;
  }


  /* ============================== */
  /* HAMBURGER */
  /* ============================== */

  .site-header .navbar-toggler .navbar-toggler-icon {
    position: relative;

    display: block;

    width: 24px;
    height: 24px;

    background-image: none !important;
  }

  .site-header .navbar-toggler .navbar-toggler-icon::before,
  .site-header .navbar-toggler .navbar-toggler-icon::after {
    content: "";

    position: absolute;
    left: 50%;

    width: 24px;
    height: 2px;

    background-color: #FFFFFF;

    transform: translateX(-50%);
  }

  .site-header .navbar-toggler .navbar-toggler-icon::before {
    top: 7px;
  }

  .site-header .navbar-toggler .navbar-toggler-icon::after {
    top: 15px;
  }


  /* ============================== */
  /* HAMBURGER -> X */
  /* ============================== */

  .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 11px;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 11px;
    transform: translateX(-50%) rotate(-45deg);
  }


  /* ============================== */
  /* REMOVE MOBILE ANIMATIONS */
  /* ============================== */

  .site-header .hs-menu-wrapper,
  .site-header .hs-menu-wrapper * {
    transition: none !important;
    animation: none !important;
  }
}


/* ============================== */
/* SMALL DEVICES */
/* ============================== */

@media (max-width: 767.98px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1050;

    width: 100%;

    background-color: #117BC0;
  }

  .navbar-collapse {
    padding: 20px;
  }

  .site-header .hs-menu-wrapper {
    width: 100%;
    max-width: 300px;

    margin: 0 auto;

    background-color: #FFFFFF;
  }

  .site-header .hs-menu-wrapper > ul {
    width: 100%;
    max-width: 300px;

    margin: 0 auto;
    padding: 1.25rem 0;

    background-color: #FFFFFF;
  }

  .site-header .hs-menu-wrapper > ul > li {
    width: 100%;
    max-width: 300px;
  }


  /* ============================== */
  /* MAIN CATEGORY SPACING */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:not(:last-child) {
    margin-bottom: 0.75rem;
  }


  /* ============================== */
  /* MAIN CATEGORY */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:not(:last-child) > a {
    width: 100%;

    padding: 6px 0;

    color: #117BC0;

    font-size: 22px;
    font-weight: 700;

    transition: none;
  }


  /* ============================== */
  /* MOBILE ICON ELEMENTS */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li > a > i.bi {
    display: inline-block;

    width: 24px;
    margin-right: 10px;

    color: #117BC0;

    font-size: 19px;
    line-height: 1;

    flex-shrink: 0;
  }


  /* ============================== */
  /* REMOVE OLD PSEUDO ICON */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li.hs-item-has-children > a::before {
    content: none !important;
    display: none !important;
  }


  /* ============================== */
  /* MOBILE SUBMENU */
  /* ============================== */

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper {
    padding-left: 36px;

    transition: none;
  }

  .site-header .hs-menu-wrapper .hs-menu-children-wrapper .hs-menu-item > a {
    padding: 1px 0;

    color: #241F20;

    font-size: 15px;

    transition: none;
  }


  /* ============================== */
  /* BOOK NOW */
  /* ============================== */

  .site-header .hs-menu-wrapper > ul > li:last-child {
    display: flex;
    justify-content: center;

    width: 100%;

    margin-top: 0.75rem;
  }

  .site-header .hs-menu-wrapper > ul > li:last-child > a {
    width: stretch;
    padding: 0.5rem 1.5rem;
    text-align: center;
  }
}


/* ============================== */
/* FOOTER */
/* ============================== */

.site-footer {
  background: #241F20;
  color: #FFFFFF;
}

.site-footer p,
.site-footer a {
  color: #FFFFFF !important;
}

.site-footer .hs-menu-wrapper > ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  gap: 2rem;

  list-style: none;

  margin: 0;
  padding: 0;
}

.site-footer .hs-menu-wrapper a {
  color: #212529;

  text-decoration: none;

  font-size: 0.95rem;
}

.site-footer .hs-menu-wrapper a:hover {
  color: #0d6efd;
}

.footer-content {
  display: flex;
  align-items: flex-start;

  gap: 17px;

  width: 100%;
}

.footer-description-wrapper {
  flex: 0 0 calc(40% - 10px);

  margin-right: auto;
}

.footer-description {
  color: #FFFFFF;

  font-size: 16px;
  line-height: 1.6;

  max-width: 600px;
}

.footer-column {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 8px;

  max-width: 150px;
}

.footer-column strong {
  color: #FFFFFF;

  font-weight: 700;

  margin-bottom: 4px;
}

.footer-column a {
  color: #FFFFFF;

  text-decoration: none;

  font-size: 16px;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #FFFFFF;

  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 20px;
}

.footer-copyright {
  color: #FFFFFF !important;
}

.footer-bottom nav {
  margin-left: auto;
}

.footer-bottom nav a {
  color: #FFFFFF;
}


/* ============================== */
/* FOOTER MOBILE */
/* ============================== */

@media (max-width: 767.98px) {

  .footer-content {
    flex-direction: column;

    gap: 30px;
  }

  .footer-description-wrapper {
    flex: 0 0 auto;

    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom nav {
    margin-left: 0;
  }
}


/* ============================== */
/* BUTTONS */
/* ============================== */

.btn {
  border-radius: 150px;
}

.btn-primary {
  background-color: #E22E26;

  border-color: #E22E26;

  color: #fff;

  border-width: 3px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: rgba(255,255,255,20);
  border-color: #E22E26;
  color: #E22E26;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(45, 54, 72, 0.25);
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #E22E26;

  border-color: #E22E26;

  opacity: 0.65;
}

.btn-outline-primary {
  background-color: transparent;

  border-color: #E22E26;

  color: #E22E26;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #E22E26;

  border-color: #E22E26;

  color: #fff;
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(45, 54, 72, 0.25);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
  color: #E22E26;

  border-color: #E22E26;

  background-color: transparent;

  opacity: 0.65;
}

.btn-outline-black {
  background-color: #fff;

  border-color: #241F20;

  color: #241F20;

  border-width: 3px;
}

.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:active,
.btn-outline-black.active,
.show > .btn-outline-black.dropdown-toggle {
  background-color: #241F20;

  border-color: #241F20;

  color: #fff;
}

.btn-outline-black:focus {
  box-shadow: 0 0 0 0.25rem rgba(45, 54, 72, 0.25);
}

.btn-outline-black:disabled,
.btn-outline-black.disabled {
  color: #241F20;

  border-color: #241F20;

  background-color: transparent;

  opacity: 0.65;
}

.btn-outline-white {
  background-color: transparent;

  border-color: #fff;

  color: #fff;

  border-width: 3px;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active,
.btn-outline-white.active,
.show > .btn-outline-white.dropdown-toggle {
  background-color: #fff;

  border-color: #fff;

  color: #E22E26;
}

.btn-outline-white:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.btn-outline-white:disabled,
.btn-outline-white.disabled {
  color: #fff;

  border-color: #fff;

  background-color: transparent;

  opacity: 0.65;
}

</style>