/* @font-size-headline-h1:   */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.active {
  opacity: 0.7;
  visibility: visible;
}
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  border: none;
  padding: 10px 15px;
  display: none;
  align-items: center;
  cursor: pointer;
  z-index: 999999999999;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 15px;
  margin-right: 10px;
}
.menu-icon span {
  display: block;
  height: 2px;
  background-color: white;
  width: 100%;
}
.menu-text {
  font-weight: bold;
  text-transform: uppercase;
}
.mobile-nav {
  margin: 0 auto;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
  background-color: var(--bws-menu-main-bg-color, #004f9f);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-nav.active {
  transform: translateY(0);
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-inline: 24px;
  padding-bottom: 13px;
}
.nav-header-left {
  flex: 0 0 auto;
}
.nav-header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 450px) {
  .nav-header-center {
    column-gap: 30px;
  }
}
.nav-header-right {
  flex: 0 0 auto;
}
.logo-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.logo-lines span {
  display: block;
  height: 3px;
  background-color: white;
  margin: 2px 0;
}
.icon {
  color: #0abbef;
  font-size: 20px;
  text-decoration: none;
  fill: currentColor;
}
.close-icon {
  color: white;
  cursor: pointer;
}
.close-icon svg {
  fill: white;
}
.nav-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}
.nav-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 85%;
  border-bottom: 2px solid var(--bws-menu-line-color, rgba(0, 0, 0, 0.112));
  margin: auto;
}
.section-header {
  display: flex;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  padding-inline: 12px;
  font-family: "Futura-Bol";
  position: relative;
  font-size: 1.65rem;
}
.section-header .nav-item-icon {
  position: relative;
  top: -1px;
}
.light-blue {
  color: #0abbef;
  fill: #0abbef;
}
.white {
  color: white;
  fill: white;
}
.section-content {
  padding: 0 15px 15px 15px;
  display: none;
  padding-bottom: 0;
  padding-inline: 50px;
  font-family: "Roboto";
}
.main-item {
  padding: 10px 0;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  padding-top: 0;
}
.sub-item {
  display: flex;
  color: white;
  align-items: center;
  font-family: "Roboto";
  padding-bottom: 8px;
  font-size: 1.03rem;
  align-items: flex-start;
  position: relative;
}
.sub-item .nav-item-icon {
  top: 4px;
  position: relative;
}
.sub-item i {
  margin-top: 3px;
  margin-right: 10px;
  font-size: 12px;
}
.sub-item span {
  flex: 1;
}
.nav-footer {
  background-color: #003b75;
  background-color: var(--bws-menu-bg-darker-color, #004f9f);
  padding-inline: 23px;
  padding-block: 25px;
}
.footer-links {
  column-gap: 29px;
  row-gap: 3px;
  width: -webkit-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Futura-Bol";
}
.footer-links a {
  color: #0abbef;
  text-decoration: none;
  font-size: 1rem;
}
.footer-links a:hover {
  color: white;
}
.social-icons {
  display: flex;
  column-gap: 20px;
}
.social-icons svg {
  width: 18px;
}
.social-icons a {
  color: white;
  text-decoration: none;
  fill: white;
}
.social-icons a :hover {
  fill: #a5adb1;
}
.expanded .section-header i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.expanded .section-content {
  display: block;
}
.section-header i {
  transition: transform 0.3s ease;
}
.mobile-nav a {
  text-decoration: none;
}
a:hover,
.section-header:hover,
.section-content:hover,
.main-item:hover,
.sub-item:hover {
  text-decoration: none;
}
a:hover.icon,
.section-header:hover.icon,
.section-content:hover.icon,
.main-item:hover.icon,
.sub-item:hover.icon {
  color: white;
}
.section-header:hover {
  color: #0abbef;
}
.section-header:hover svg {
  fill: #0abbef;
}
.main-item:hover {
  color: #0abbef;
}
.sub-item:hover {
  color: #0abbef;
}
.sub-item:hover svg {
  fill: #0abbef;
}
.mobile-nav svg.nav-item-icon {
  transform: rotate(90deg);
}
.mobile-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 11px;
  font-size: 20px;
  text-transform: uppercase;
  z-index: 999999999999;
  font-family: "Futura-Bol";
}
@media only screen and (max-width: 450px) {
  .mobile-menu-toggle {
    font-size: 15px;
    column-gap: 8px;
    position: relative;
    top: -9px;
  }
}
.mobile-menu-toggle.active {
  margin-top: unset;
  margin-right: unset;
}
@media only screen and (max-width: 450px) {
  .mobile-menu-toggle.active {
    top: auto;
  }
}
.mobile-menu-toggle #close-menu .navbar-toggler-icon {
  width: 31px;
}
.mobile-menu-toggle #close-menu .navbar-toggler-icon:before,
.mobile-menu-toggle #close-menu .navbar-toggler-icon:after {
  width: 31px;
  height: 3px;
}
.mobile-menu-toggle #menu-toggle {
  width: 31px;
}
.mobile-menu-toggle #menu-toggle .navbar-toggler-icon {
  width: 31px;
}
.mobile-menu-toggle #menu-toggle .navbar-toggler-icon:before,
.mobile-menu-toggle #menu-toggle .navbar-toggler-icon:after {
  width: 31px;
  height: 3px;
}
.mobile-menu-logo {
  margin-top: 12px;
  z-index: 999999999999;
}
@media only screen and (max-width: 450px) {
  .mobile-menu-logo {
    margin-top: 23px;
  }
}
.mobile-mini-logo {
  display: none;
}
.mobile-slant {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100vw;
  height: 100px;
  pointer-events: none;
}
.mobile-slant-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60vw;
  height: 200px;
  background-color: white;
  -webkit-clip-path: polygon(0% 0%, 87.81% 0%, 101.98% 26.5%, 88.79% 49.5%, 0% 58.5%);
          clip-path: polygon(0% 0%, 87.81% 0%, 101.98% 26.5%, 88.79% 49.5%, 0% 58.5%);
}
.mobile-slant-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 200px;
  background-color: var(--bws-menu-main-bg-color, #004f9f);
  -webkit-clip-path: polygon(-99.06% 79px, -98.59% 2px, -42.46% 0px, 23.36% 0, 100% 0%, 100% 72px, 20% 29%, 0 0);
          clip-path: polygon(-99.06% 79px, -98.59% 2px, -42.46% 0px, 23.36% 0, 100% 0%, 100% 72px, 20% 29%, 0 0);
  transition: -webkit-clip-path 250ms linear;
  transition: clip-path 250ms linear;
  transition: clip-path 250ms linear, -webkit-clip-path 250ms linear;
}
#page-header.sticky .mobile-slant .mobile-slant-right {
  -webkit-clip-path: polygon(-100% 100px, -100% 0, 12% 0, 12% 0, 100% 0%, 100% 100px, 13% 100px, 2% 100px);
          clip-path: polygon(-100% 100px, -100% 0, 12% 0, 12% 0, 100% 0%, 100% 100px, 13% 100px, 2% 100px);
  width: 100%;
  height: 80px;
}
#page-header.sticky .mobile-slant .mobile-slant-left {
  display: none;
}
#page-header.sticky .mobile-toggle-logo-container {
  align-items: center;
  padding-inline: 20px;
}
#page-header.sticky .mobile-toggle-logo-container .mobile-menu-logo {
  display: none;
}
#page-header.sticky .mobile-toggle-logo-container .mobile-mini-logo {
  display: block;
}
#page-header.sticky .mobile-toggle-logo-container .mobile-menu-toggle {
  top: 0;
}
.mobile-toggle-logo-container {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  position: fixed;
  z-index: 999;
  margin-top: 30px;
  padding-inline: 50px;
  transition: padding-inline 250ms linear;
}
@media only screen and (max-width: 450px) {
  .mobile-toggle-logo-container {
    padding-inline: 25px;
  }
}
.nav-section.expanded .section-header {
  padding-bottom: 4px;
}
@media only screen and (min-width: 1280px) {
  .menu-overlay {
    display: none;
  }
  .container.mobile {
    display: none;
  }
  .mobile-slant {
    display: none;
  }
  .mobile-menu-logo,
  .mobile-mini-logo {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-toggle-logo-container {
    display: none;
  }
}
@media only screen and (max-width: 1279px) {
  .menu-toggle.mobile {
    display: flex;
  }
  .mobile-nav {
    max-width: 100%;
  }
  #page-header > .container.desktop {
    display: none;
  }
  #page-header {
    justify-content: space-between;
    min-height: 50px;
  }
  .container.mobile {
    display: contents;
  }
  #page-header.sticky {
    background-color: unset !important;
    position: unset;
  }
  #page-header.sticky .navbar-brand-logo-normal {
    display: block;
  }
  body {
    padding-top: 0px;
  }
  body #page-content {
    top: 0;
  }
  .bws-left-white-area-slant {
    display: none;
  }
}
