@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
@charset "UTF-8";
/* Nom des couleurs pris en utilisant         */
/* le projet https://chir.ag/projects/name-that-color */
/*****************************************************/
/*****************************************************/
/*****************************************************/
/*
  @mixin generateThemeMappings(themeName: string, themeMap: map)
  fonction utilitaire pour générer une liste de variables de thèmes et les ajouter au map existant.
  Ceci ajoutera un nouveau thème à l'array de thèmes et la liste de couleurs de thèmes
*/
/*
  @mixin generateThemeVariables
  Auto-genère la liste entière de variables de thème pour l'utiliser dans de déclarations var()
  Elle devrait être juste appelée dans le selecteur html à la racine de l'app.
*/
@use "sass:string";

/** Génération de thèmes **/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

@keyframes show-menu {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes hide-menu {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.3rem);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (min-width: 1280px) {
  html {
    scroll-padding-top: 220px;
  }
}

@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 100px;
  }
}

div.svg-sprite {
  display: none;
}

@media (min-width: 769px) {
  .m-1-y {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .m-1-x {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }

  .m-1-r {
    margin-right: 0.25rem;
  }

  .m-1-l {
    margin-left: 0.25rem;
  }

  .m-1-t {
    margin-top: 0.25rem;
  }

  .m-1-b {
    margin-bottom: 0.25rem;
  }

  .m-1-a {
    margin: 0.25rem;
  }

  .m-2-y {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .m-2-x {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .m-2-r {
    margin-right: 0.5rem;
  }

  .m-2-l {
    margin-left: 0.5rem;
  }

  .m-2-t {
    margin-top: 0.5rem;
  }

  .m-2-b {
    margin-bottom: 0.5rem;
  }

  .m-2-a {
    margin: 0.5rem;
  }

  .m-3-y {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .m-3-x {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .m-3-r {
    margin-right: 1rem;
  }

  .m-3-l {
    margin-left: 1rem;
  }

  .m-3-t {
    margin-top: 1rem;
  }

  .m-3-b {
    margin-bottom: 1rem;
  }

  .m-3-a {
    margin: 1rem;
  }

  .m-4-y {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .m-4-x {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .m-4-r {
    margin-right: 2rem;
  }

  .m-4-l {
    margin-left: 2rem;
  }

  .m-4-t {
    margin-top: 2rem;
  }

  .m-4-b {
    margin-bottom: 2rem;
  }

  .m-4-a {
    margin: 2rem;
  }

  .m-5-y {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .m-5-x {
    margin-right: 4rem;
    margin-left: 4rem;
  }

  .m-5-r {
    margin-right: 4rem;
  }

  .m-5-l {
    margin-left: 4rem;
  }

  .m-5-t {
    margin-top: 4rem;
  }

  .m-5-b {
    margin-bottom: 4rem;
  }

  .m-5-a {
    margin: 4rem;
  }

  .p-1-y {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .p-1-x {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  .p-1-r {
    padding-right: 0.25rem;
  }

  .p-1-l {
    padding-left: 0.25rem;
  }

  .p-1-t {
    padding-top: 0.25rem;
  }

  .p-1-b {
    padding-bottom: 0.25rem;
  }

  .p-1-a {
    padding: 0.25rem;
  }

  .p-2-y {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .p-2-x {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .p-2-r {
    padding-right: 0.5rem;
  }

  .p-2-l {
    padding-left: 0.5rem;
  }

  .p-2-t {
    padding-top: 0.5rem;
  }

  .p-2-b {
    padding-bottom: 0.5rem;
  }

  .p-2-a {
    padding: 0.5rem;
  }

  .p-3-y {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .p-3-x {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .p-3-r {
    padding-right: 1rem;
  }

  .p-3-l {
    padding-left: 1rem;
  }

  .p-3-t {
    padding-top: 1rem;
  }

  .p-3-b {
    padding-bottom: 1rem;
  }

  .p-3-a {
    padding: 1rem;
  }

  .p-4-y {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-4-x {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-4-r {
    padding-right: 2rem;
  }

  .p-4-l {
    padding-left: 2rem;
  }

  .p-4-t {
    padding-top: 2rem;
  }

  .p-4-b {
    padding-bottom: 2rem;
  }

  .p-4-a {
    padding: 2rem;
  }

  .p-5-y {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .p-5-x {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .p-5-r {
    padding-right: 4rem;
  }

  .p-5-l {
    padding-left: 4rem;
  }

  .p-5-t {
    padding-top: 4rem;
  }

  .p-5-b {
    padding-bottom: 4rem;
  }

  .p-5-a {
    padding: 4rem;
  }
}

@media (max-width: 768px) {
  .m-1-y {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .m-1-x {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
  }

  .m-1-r {
    margin-right: 0.25rem;
  }

  .m-1-l {
    margin-left: 0.25rem;
  }

  .m-1-t {
    margin-top: 0.25rem;
  }

  .m-1-b {
    margin-bottom: 0.25rem;
  }

  .m-1-a {
    margin: 0.25rem;
  }

  .m-2-y {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .m-2-x {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  .m-2-r {
    margin-right: 0.5rem;
  }

  .m-2-l {
    margin-left: 0.5rem;
  }

  .m-2-t {
    margin-top: 0.5rem;
  }

  .m-2-b {
    margin-bottom: 0.5rem;
  }

  .m-2-a {
    margin: 0.5rem;
  }

  .m-3-y {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .m-3-x {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .m-3-r {
    margin-right: 1rem;
  }

  .m-3-l {
    margin-left: 1rem;
  }

  .m-3-t {
    margin-top: 1rem;
  }

  .m-3-b {
    margin-bottom: 1rem;
  }

  .m-3-a {
    margin: 1rem;
  }

  .m-4-y {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .m-4-x {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .m-4-r {
    margin-right: 2rem;
  }

  .m-4-l {
    margin-left: 2rem;
  }

  .m-4-t {
    margin-top: 2rem;
  }

  .m-4-b {
    margin-bottom: 2rem;
  }

  .m-4-a {
    margin: 2rem;
  }

  .m-5-y {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .m-5-x {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  .m-5-r {
    margin-right: 2rem;
  }

  .m-5-l {
    margin-left: 2rem;
  }

  .m-5-t {
    margin-top: 2rem;
  }

  .m-5-b {
    margin-bottom: 2rem;
  }

  .m-5-a {
    margin: 2rem;
  }

  .p-1-y {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .p-1-x {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  .p-1-r {
    padding-right: 0.25rem;
  }

  .p-1-l {
    padding-left: 0.25rem;
  }

  .p-1-t {
    padding-top: 0.25rem;
  }

  .p-1-b {
    padding-bottom: 0.25rem;
  }

  .p-1-a {
    padding: 0.25rem;
  }

  .p-2-y {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .p-2-x {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .p-2-r {
    padding-right: 0.5rem;
  }

  .p-2-l {
    padding-left: 0.5rem;
  }

  .p-2-t {
    padding-top: 0.5rem;
  }

  .p-2-b {
    padding-bottom: 0.5rem;
  }

  .p-2-a {
    padding: 0.5rem;
  }

  .p-3-y {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .p-3-x {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .p-3-r {
    padding-right: 1rem;
  }

  .p-3-l {
    padding-left: 1rem;
  }

  .p-3-t {
    padding-top: 1rem;
  }

  .p-3-b {
    padding-bottom: 1rem;
  }

  .p-3-a {
    padding: 1rem;
  }

  .p-4-y {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-4-x {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-4-r {
    padding-right: 2rem;
  }

  .p-4-l {
    padding-left: 2rem;
  }

  .p-4-t {
    padding-top: 2rem;
  }

  .p-4-b {
    padding-bottom: 2rem;
  }

  .p-4-a {
    padding: 2rem;
  }

  .p-5-y {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-5-x {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-5-r {
    padding-right: 2rem;
  }

  .p-5-l {
    padding-left: 2rem;
  }

  .p-5-t {
    padding-top: 2rem;
  }

  .p-5-b {
    padding-bottom: 2rem;
  }

  .p-5-a {
    padding: 2rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.72;
  box-sizing: border-box;
}

.default-theme body {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

body>div:first-child {
  display: none;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
}

.default-theme p {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

.default-theme li,
ol,
h4 {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

li,
ol {
  margin-bottom: 5px;
}

ol {
  counter-reset: myOrderedListItemsCounter;
}

ol li {
  list-style-type: none;
  position: relative;
}

ol {
  padding-left: 15px;
}

ol li {
  margin-left: 20px;
}

ol>li:before {
  position: relative;
  top: 2px;
  display: inline-block;
  counter-increment: myOrderedListItemsCounter;
  content: counter(myOrderedListItemsCounter);
  margin: 10px 10px 0 -35px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
}

.default-theme ol>li:before {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme body {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-bg-primary, #ffffff);
}

body.sticky {
  padding-top: 100px;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.container {
  margin: 0px auto;
  padding: 0px 15px;
  width: 100%;
  max-width: 1200px;
}

.container.container-large {
  max-width: 1400px;
}

@media (max-width: 320px) {
  .container {
    margin: 0px auto;
    padding: 0;
    width: 100%;
    max-width: 320px;
  }

  .container.container-large {
    max-width: 320px;
  }
}

body {
  font-family: 'Inter', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
sup,
sub {
  font-family: 'Inter', Arial, sans-serif;
}

h1 {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
}

.default-theme h1 {
  color: #333333;
  color: var(--theme-default-theme-common-black, #333333);
}

@media (max-width: 599px) {
  h1 {
    font-size: 24px;
    line-height: 32px !important;
  }
}

h2 {
  font-size: 34px;
  line-height: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

h2 .span-blue a,
h2 a {
  font-size: 34px;
}

.default-theme h2 .span-blue a,
h2 a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme h2 .span-blue a:hover,
h2 a:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

h3 {
  font-size: 24px;
  line-height: 1.25em;
  margin-bottom: 10px;
  font-weight: 500;
}

h3 .span-blue a,
h3 a {
  font-size: 24px;
}

.default-theme h3 .span-blue a,
h3 a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme h3 .span-blue a:hover,
h3 a:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

p {
  font-size: 16px;
  line-height: 1.5rem;
}

p span.small {
  font-size: 12px;
}

p span.small a {
  font-size: 12px;
}

p a.small {
  font-size: 12px;
}

.default-theme p a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme p a:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

a.btn {
  font-weight: bold;
}

@media (max-width: 768px) {

  h1,
  h2,
  h3 {
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 28px;
    line-height: 2rem;
  }
}

.default-theme .rich_text a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.rich_text a:hover {
  text-decoration: none;
}

sup {
  position: relative;
  top: -0.35rem;
  font-size: 60%;
}

sub {
  position: relative;
  bottom: -0.35rem;
  font-size: 60%;
}

body.ie {
  padding-top: 40px;
  position: relative;
}

#ieWarning {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background-color: #fdf3f3;
  border: 2px solid #e02020;
}

#ieWarning p {
  color: #e02020;
}

.visually-hidden {
  display: none;
}

.bg-white {
  background-color: white;
}

.default-theme .bg-blue {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme .bg-light-blue {
  background-color: #E1F5FF;
  background-color: var(--theme-default-theme-cb-primary-light, #E1F5FF);
}

.default-theme .bg-dark-blue {
  background-color: #003070;
  background-color: var(--theme-default-theme-cb-primary-dark, #003070);
}

.default-theme .bg-blue-wcag {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme .bg-blue-main {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme .bg-blue-light {
  background-color: #A1DEFC;
  background-color: var(--theme-default-theme-cb-blue-light, #A1DEFC);
}

.default-theme .bg-blue-pale {
  background-color: #D2ECFC;
  background-color: var(--theme-default-theme-cb-blue-pale, #D2ECFC);
}

.default-theme .bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-cb-light-gray, #f6f6f6);
}

.default-theme .bg-grey-light {
  background-color: #E6E6E6;
  background-color: var(--theme-default-theme-cb-grey-light, #E6E6E6);
}

.default-theme .bg-grey-pale {
  background-color: #F2F2F2;
  background-color: var(--theme-default-theme-cb-grey-pale, #F2F2F2);
}

.default-theme .bg-primary-dark {
  background-color: #003070;
  background-color: var(--theme-default-theme-cb-primary-dark, #003070);
}

.default-theme .bg-primary-main {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme .bg-primary-light {
  background-color: #E1F5FF;
  background-color: var(--theme-default-theme-cb-primary-light, #E1F5FF);
}

.default-theme .bg-secondary-dark {
  background-color: #AB5200;
  background-color: var(--theme-default-theme-cb-secondary-dark, #AB5200);
}

.default-theme .bg-secondary-main {
  background-color: #E07100;
  background-color: var(--theme-default-theme-cb-secondary-main, #E07100);
}

.default-theme .bg-secondary-light {
  background-color: #FFEBD7;
  background-color: var(--theme-default-theme-cb-secondary-light, #FFEBD7);
}

.default-theme .bg-info-dark {
  background-color: #147379;
  background-color: var(--theme-default-theme-cb-info-dark, #147379);
}

.default-theme .bg-info-main {
  background-color: #00ACB8;
  background-color: var(--theme-default-theme-cb-info-main, #00ACB8);
}

.default-theme .bg-info-light {
  background-color: #DFF8FA;
  background-color: var(--theme-default-theme-cb-info-light, #DFF8FA);
}

.default-theme .bg-success-dark {
  background-color: #005826;
  background-color: var(--theme-default-theme-cb-success-dark, #005826);
}

.default-theme .bg-success-main {
  background-color: #219653;
  background-color: var(--theme-default-theme-cb-success-main, #219653);
}

.default-theme .bg-success-light {
  background-color: #DCF6E7;
  background-color: var(--theme-default-theme-cb-success-light, #DCF6E7);
}

.default-theme .bg-error-dark {
  background-color: #8E0900;
  background-color: var(--theme-default-theme-cb-error-dark, #8E0900);
}

.default-theme .bg-error-main {
  background-color: #E02020;
  background-color: var(--theme-default-theme-cb-error-main, #E02020);
}

.default-theme .bg-error-light {
  background-color: #FDEEEE;
  background-color: var(--theme-default-theme-cb-error-light, #FDEEEE);
}

.default-theme .bg-warning-dark {
  background-color: #B38719;
  background-color: var(--theme-default-theme-cb-warning-dark, #B38719);
}

.default-theme .bg-warning-main {
  background-color: #F2C94C;
  background-color: var(--theme-default-theme-cb-warning-main, #F2C94C);
}

.default-theme .bg-warning-light {
  background-color: #FFF7DF;
  background-color: var(--theme-default-theme-cb-warning-light, #FFF7DF);
}

.default-theme .text-white {
  color: #FFFFFF;
  color: var(--theme-default-theme-cb-text-white, #FFFFFF);
}

.default-theme .text-black {
  color: #000000;
  color: var(--theme-default-theme-cb-text-black, #000000);
}

.default-theme .text-primary {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.default-theme .text-secondary {
  color: #4F4F4F;
  color: var(--theme-default-theme-cb-text-secondary, #4F4F4F);
}

.cssForEditor div.main-header div.header-container nav#navigation>ul>li.submenu-open div.mega-menu {
  position: fixed;
  margin-top: 50px;
}

.cssForEditor .page-content {
  min-height: 100vh;
}

div.splash-container {
  background-size: cover;
  background-repeat: no-repeat;
}

div.splash-container.content-area {
  padding-bottom: 0;
}

div.splash-container div.splash {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

div.splash-container div.splash section {
  margin: 3rem 52.5% 3rem 1rem;
}

.default-theme div.splash-container div.splash section {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-bg-primary, #ffffff);
}

div.splash-container div.splash section .content-area .container .content-section .column-container .wrapper .flex-container.px-2 .flex-item:first-child {
  padding-left: 0;
}

div.splash-container div.splash section .content-area .container .content-section .column-container .wrapper .flex-container.px-2 .flex-item:last-child {
  padding-right: 0;
}

@media (max-width: 768px) {
  div.splash-container {
    padding-top: 0;
  }

  div.splash-container div.container {
    padding: 0;
  }

  div.splash-container div.container .content-section div.column-container {
    padding: 0 0 0 0 !important;
  }

  div.splash-container div.container .content-section div.column-container .wrapper div.flex-container>div.flex-item {
    margin-bottom: 0;
    padding: 0;
  }

  div.splash-container div.container .content-section div.column-container .wrapper div.flex-container.px-0>div.flex-item {
    margin-bottom: 0;
    padding: 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash {
    padding: 30px 30px 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash section {
    padding: 0 20px;
    margin: 0 0 0 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash section .text-block {
    padding: 0 10px;
    margin-left: 0;
    margin-right: 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash section .cta-container {
    padding: 0 10px;
    margin-left: 0;
    margin-right: 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash section .content-area .container .content-section .column-container .wrapper .flex-container.px-2 .flex-item:first-child {
    padding-left: 0.5rem;
  }

  div.splash-container div.container .content-section div.column-container div.splash section .content-area .container .content-section .column-container .wrapper .flex-container.px-2 .flex-item:last-child {
    padding-right: 0.5rem;
  }

  div.splash-container div.container .content-section div.column-container div.splash footer {
    display: none;
  }

  div.splash-container div.container .content-section div.column-container div.splash .half-arrow {
    width: 15vw;
    height: 7.5vw;
  }
}

@media (max-width: 599px) {
  div.splash-container div.container .content-section div.column-container div.splash {
    padding: 0;
  }

  div.splash-container div.container .content-section div.column-container div.splash section .text-block {
    padding: 0;
  }
}

.hero-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 440px;
  overflow: hidden;
}

.hero-wrapper .text-block .rich_text {
  margin: 0;
}

.default-theme .hero-wrapper.text-white p,
.hero-wrapper.text-white h1,
.hero-wrapper.text-white h2,
.hero-wrapper.text-white h3,
.hero-wrapper.text-white h4,
.hero-wrapper.text-white h5,
.hero-wrapper.text-white h6,
.hero-wrapper.text-white .rich_text p,
.hero-wrapper.text-white .rich_text h1,
.hero-wrapper.text-white .rich_text h2,
.hero-wrapper.text-white .rich_text h3,
.hero-wrapper.text-white .rich_text h4,
.hero-wrapper.text-white .rich_text h5,
.hero-wrapper.text-white .rich_text h6 {
  color: #FFFFFF;
  color: var(--theme-default-theme-cb-text-white, #FFFFFF);
}

.default-theme .hero-wrapper.text-black p,
.hero-wrapper.text-black h1,
.hero-wrapper.text-black h2,
.hero-wrapper.text-black h3,
.hero-wrapper.text-black h4,
.hero-wrapper.text-black h5,
.hero-wrapper.text-black h6,
.hero-wrapper.text-black .rich_text p,
.hero-wrapper.text-black .rich_text h1,
.hero-wrapper.text-black .rich_text h2,
.hero-wrapper.text-black .rich_text h3,
.hero-wrapper.text-black .rich_text h4,
.hero-wrapper.text-black .rich_text h5,
.hero-wrapper.text-black .rich_text h6 {
  color: #000000;
  color: var(--theme-default-theme-cb-text-black, #000000);
}

.default-theme .hero-wrapper.text-primary p,
.hero-wrapper.text-primary h1,
.hero-wrapper.text-primary h2,
.hero-wrapper.text-primary h3,
.hero-wrapper.text-primary h4,
.hero-wrapper.text-primary h5,
.hero-wrapper.text-primary h6,
.hero-wrapper.text-primary .rich_text p,
.hero-wrapper.text-primary .rich_text h1,
.hero-wrapper.text-primary .rich_text h2,
.hero-wrapper.text-primary .rich_text h3,
.hero-wrapper.text-primary .rich_text h4,
.hero-wrapper.text-primary .rich_text h5,
.hero-wrapper.text-primary .rich_text h6 {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.default-theme .hero-wrapper.text-secondary p,
.hero-wrapper.text-secondary h1,
.hero-wrapper.text-secondary h2,
.hero-wrapper.text-secondary h3,
.hero-wrapper.text-secondary h4,
.hero-wrapper.text-secondary h5,
.hero-wrapper.text-secondary h6,
.hero-wrapper.text-secondary .rich_text p,
.hero-wrapper.text-secondary .rich_text h1,
.hero-wrapper.text-secondary .rich_text h2,
.hero-wrapper.text-secondary .rich_text h3,
.hero-wrapper.text-secondary .rich_text h4,
.hero-wrapper.text-secondary .rich_text h5,
.hero-wrapper.text-secondary .rich_text h6 {
  color: #4F4F4F;
  color: var(--theme-default-theme-cb-text-secondary, #4F4F4F);
}

.hero-wrapper .hero-img {
  display: flex;
  align-items: center;
  justify-content: left;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 50vw;
  overflow: hidden;
}

.hero-wrapper .hero-img img {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: inherit;
}

.hero-wrapper .container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  min-height: 440px;
}

.hero-wrapper .container .hero-content {
  width: 50%;
  padding: 0 15px;
}

@media screen and (max-width: 1023px) {
  .hero-wrapper {
    display: block;
    min-height: inherit;
  }

  .hero-wrapper .container {
    display: block;
    min-height: inherit;
    padding: 1rem 0;
  }

  .hero-wrapper .container .hero-content {
    width: 100%;
  }

  .hero-wrapper .hero-img {
    display: block;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    clear: both;
  }

  .hero-wrapper .hero-img img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.simple-banner {
  width: 100%;
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.default-theme .simple-banner {
  background: #f2c94c;
  background: var(--theme-default-theme-alert-bg, #f2c94c);
}

.simple-banner.hide {
  display: none;
}

.simple-banner .simple-banner-text a,
.simple-banner .simple-banner-text span {
  display: flex;
}

.simple-banner .simple-banner-text a p,
.simple-banner .simple-banner-text span p {
  font-size: 1em;
  padding: 12px 12px;
  margin-bottom: 0px;
}

.default-theme .simple-banner .simple-banner-text a p,
.simple-banner .simple-banner-text span p {
  color: #333333;
  color: var(--theme-default-theme-header-fg, #333333);
}

.simple-banner .simple-banner-text a svg,
.simple-banner .simple-banner-text span svg {
  width: 24px;
  height: auto;
  margin-left: 12px;
}

.simple-banner .simple-banner-text a svg:last-child,
.simple-banner .simple-banner-text span svg:last-child {
  width: 1.1rem;
}

.default-theme .simple-banner .simple-banner-text a svg use,
.simple-banner .simple-banner-text span svg use {
  fill: #333333;
  fill: var(--theme-default-theme-header-fg, #333333);
}

.cssForEditor .simple-banner.hide {
  display: flex;
}

.responsive-banner {
  background: #003070;
  color: #ffffff;
  font-family: Arial, sans-serif;
  width: 100%;
  overflow: hidden;
  padding: 0 16px;
}

.responsive-banner.warning-banner {
  background: #f2c94c !important;
  color: #000000 !important;
}

.responsive-banner.warning-banner * {
  color: #000000 !important;
}

.responsive-banner.hide {
  display: none;
}

@media (max-width: 768px) {
  .responsive-banner {
    padding: 0;
  }
}

.banner-container {
  display: flex;
  align-items: center;
  padding: 24px 0;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.banner-nav-left,
.banner-nav-right {
  display: flex;
  flex: 0 0 auto;
  max-width: 44px;
  align-items: center;
  justify-content: center;
}

.banner-content {
  flex: 1 1 auto;
  text-align: center;
  overflow: hidden;
  min-width: 0;
  margin: 0 8px;
  max-width: 1277px;
}

.banner-pages-container {
  position: relative;
  width: 100%;
  min-height: 80px;
}

.responsive-banner.warning-banner .banner-pages-container {
  min-height: auto;
}

.banner-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  display: flex;
  padding-bottom: 24px;
}

.banner-page.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.responsive-banner.warning-banner .banner-page {
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  min-height: auto;
}

@media (max-width: 768px) {
  .responsive-banner.warning-banner .banner-page {
    justify-content: center;
  }
}

.banner-timer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 1px;
  width: 270px;
}

@media (max-width: 768px) {
  .banner-timer {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
}

.timer-display {
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .timer-display {
    padding: 0;
    font-size: 16px;
    line-height: 22px;
  }
}

.responsive-banner .banner-information {
  color: #ffffff !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  text-align: left;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
}

.responsive-banner .banner-information * {
  color: #ffffff !important;
}

.banner-warning-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  gap: 8px;
}

.banner-warning-content p {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .banner-warning-content {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }
}

.banner-warning-information-text {
  color: #000000 !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

@media (max-width: 768px) {
  .banner-warning-information-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.banner-warning-hyperlink-wrapper {
  display: inline;
  align-self: baseline;
}

.banner-warning-information-hyperlink {
  color: #000000 !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
}

.banner-hyperlink,
.banner-promocode-text {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
}

.banner-hyperlink:hover,
.banner-promocode-text:hover {
  opacity: 1;
  color: #ffffff;
  text-decoration: underline;
}

.responsive-banner.warning-banner .banner-hyperlink,
.responsive-banner.warning-banner .banner-promocode-text {
  color: #000000 !important;
}

@media (max-width: 768px) {

  .banner-hyperlink,
  .banner-promocode-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.banner-promocode-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
}

.promocode-label {
  opacity: 0.9;
}

.promocode-value {
  font-weight: bold;
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.responsive-banner .promocode-copy-btn {
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.25rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.responsive-banner .promocode-copy-btn:hover,
.responsive-banner .promocode-copy-btn:focus,
.responsive-banner .promocode-copy-btn:active {
  background: transparent !important;
  opacity: 0.8;
  outline: none !important;
  box-shadow: none !important;
}

.banner-progress-bar-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  height: 4px;
  background: transparent !important;
  overflow: hidden;
  position: relative;
}

.responsive-banner.warning-banner .banner-progress-bar-container {
  display: none;
}

@media (max-width: 768px) {
  .banner-progress-bar-container {
    margin: 0 16px;
    max-width: none;
    width: auto;
  }
}

.banner-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  background: #0094D7;
  width: 0%;
  transition: width 0.1s linear;
}

.banner-progress-bar-empty {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ffffff;
  width: 100%;
  z-index: 1;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.responsive-banner.warning-banner .banner-dots {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 4px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: #ffffff;
}

.banner-nav {
  background: transparent !important;
  border: none;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  width: 32px;
  height: 32px;
}

.banner-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.responsive-banner.warning-banner .banner-nav {
  color: #000000 !important;
}

.responsive-banner.warning-banner .banner-nav svg path {
  fill: #000000 !important;
}

.banner-close {
  background: transparent !important;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s ease;
  min-width: 24px;
  min-height: 24px;
  white-space: nowrap;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}

.banner-close:active {
  opacity: 0.6;
}

.responsive-banner.warning-banner .banner-close {
  color: #000000 !important;
}

.close-icon {
  width: 24px;
  height: 24px;
}

.close-icon path {
  fill: currentColor;
}

.banner-close-text {
  display: inline;
  font-size: 18px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 768px) {
  .banner-close-text {
    display: none;
  }
}

.banner-desktop-tablet-visibility-wrapper {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1560px) {
  .banner-desktop-tablet-visibility-wrapper {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .banner-desktop-tablet-visibility-wrapper {
    display: none;
  }
}

.banner-desktop-tablet-components {
  display: flex;
  flex: 0 1 1277px;
  margin: 0 auto;
  min-width: 0;
  align-items: center;
}

.banner-mobile-visibility-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .banner-mobile-visibility-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }
}

.banner-mobile-navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .banner-mobile-navigation-wrapper {
    justify-content: space-between;
    align-items: center;
    order: 2;
    width: 100%;
  }
}

@media (max-width: 1560px) {
  .banner-close {
    position: relative;
    margin-left: auto;
    margin-bottom: auto;
  }
}

@media (max-width: 1280px) {
  .banner-container {
    padding: 24px 16px;
  }

  .banner-nav {
    min-width: 40px;
    min-height: 40px;
  }
}

@media (max-width: 768px) {
  .banner-container {
    padding: 16px;
    text-align: center;
  }

  .banner-pages-container {
    flex: 1 1 auto;
    min-height: 80px;
    width: 100%;
    min-width: 0;
    position: relative;
  }

  .banner-nav-left,
  .banner-nav-right {
    flex: 1;
    max-width: 36px;
  }

  .banner-content {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .banner-page {
    flex-direction: column;
    padding: 0 0 8px;
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .banner-information {
    font-size: 16px;
    line-height: 22px;
  }

  .banner-nav {
    width: 36px;
    height: 36px;
  }

  .banner-close {
    position: relative;
    margin-left: auto;
    margin-bottom: auto;
  }

  .close-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .banner-container {
    padding: 16px;
  }

  .banner-information {
    font-size: 14px;
    line-height: 20px;
  }
}

footer .footer-top-bg {
  padding: 30px 0;
}

.default-theme footer .footer-top-bg {
  background-color: #e1f5ff;
  background-color: var(--theme-default-theme-footer-bg, #e1f5ff);
}

.default-theme footer .footer-top-bg {
  color: #00588a;
  color: var(--theme-default-theme-footer-fg-primary, #00588a);
}

footer .footer-bottom-bg {
  padding: 30px 0;
  background-color: white;
}

.default-theme footer .footer-bottom-bg {
  color: #333333;
  color: var(--theme-default-theme-fg-primary, #333333);
}

footer .container .column-container {
  padding: 0 15px;
}

footer .container .links-columns div.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  align-items: flex-start;
  justify-content: space-between;
}

footer .container .links-columns div.flex-container>div {
  display: block;
  margin: 0;
  padding: 10px 0;
  width: 25%;
}

footer .container .links-columns div.flex-container>div a {
  display: block;
  line-height: 1.3;
  font-size: 13px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.default-theme footer .container .links-columns div.flex-container>div a {
  color: #00588a;
  color: var(--theme-default-theme-footer-fg-primary, #00588a);
}

footer .container .links-columns div.flex-container>div a:hover {
  text-decoration: underline;
}

footer .container .links-columns div.flex-container>div ul {
  display: flex;
  flex-flow: column wrap;
  justify-content: left;
  align-items: flex-start;
}

footer .container .links-columns div.flex-container>div ul li {
  list-style: none;
  margin: 5px 0 10px;
  padding: 0px;
}

footer .container .links-columns div.flex-container>div ul li a {
  margin: 0;
  font-weight: normal;
}

footer .container .links-columns div.flex-container>div .social-media-links {
  margin-top: 20px;
}

footer .container .links-columns div.flex-container>div .social-media-links .social-media-links-column-title {
  line-height: 1.3;
  font-size: 13px;
  font-weight: bold;
}

.default-theme footer .container .links-columns div.flex-container>div .social-media-links .social-media-links-column-title {
  color: #00588a;
  color: var(--theme-default-theme-footer-fg-primary, #00588a);
}

footer .container .links-columns div.flex-container>div .social-media-links>ul {
  display: block;
  padding-top: 10px;
}

footer .container .links-columns div.flex-container>div .social-media-links>ul li {
  display: inline-block;
  margin-right: 10px;
}

footer .container .links-columns div.flex-container>div .social-media-links>ul li a:hover img {
  filter: brightness(115%);
}

footer .container .links-columns div.flex-container>div .social-media-links>ul li img {
  width: 32px;
  height: 32px;
}

footer .container .links-columns div.flex-container>div .social-media-links>ul li:last-child {
  margin-right: 0;
}

footer .container .footer-privacy-links {
  text-align: center;
}

footer .container .footer-privacy-links ul li {
  display: inline-block;
  margin: 0 0.5em;
  list-style-type: none;
}

footer .container .footer-privacy-links ul li a {
  font-size: 13px;
  font-weight: bold;
}

.default-theme footer .container .footer-privacy-links ul li a {
  color: #333333;
  color: var(--theme-default-theme-fg-primary, #333333);
}

footer .container .footer-privacy-links ul li a:hover {
  text-decoration: underline;
}

footer .container .footer-address {
  text-align: center;
  font-size: 13px;
}

footer .container .footer-copyright {
  display: flex;
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

footer .container .footer-copyright span {
  display: inline-block;
}

footer .container .footer-copyright .copyright-image {
  display: inline-block;
  max-height: 35px;
  margin-left: 20px;
}

footer .container .footer-richtext {
  padding: 1rem 0;
}

footer .container .footer-richtext:empty {
  display: none;
}

footer .container .footer-logo {
  text-align: center;
}

footer .container .footer-logo img {
  margin-top: 20px;
  max-height: 40px;
}

@media (min-width: 577px) and (max-width: 768px) {
  footer .container .links-columns div.flex-container {
    padding: 0 10%;
  }

  footer .container .links-columns div.flex-container>div {
    min-width: 50%;
    justify-content: center;
  }

  footer .container .footer-copyright {
    display: flex;
    clear: both;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  footer .container .footer-copyright span {
    display: inline-block;
    line-height: 35px;
  }

  footer .container .footer-copyright .copyright-image {
    display: inline-block;
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  footer .container .links-columns div.flex-container {
    padding: 0 15%;
  }

  footer .container .links-columns div.flex-container>div {
    display: block;
    clear: both;
    justify-content: center;
    width: 100%;
  }

  footer .container .footer-copyright {
    display: block;
    clear: both;
    width: 100%;
    text-align: center;
  }

  footer .container .footer-copyright span {
    display: block;
    text-align: center;
    clear: both;
  }

  footer .container .footer-copyright .copyright-image {
    display: block;
    clear: both;
    text-align: center;
    margin: 10px auto;
  }
}

.content-area {
  position: relative;
  z-index: 1;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-area.has-icon {
  padding-top: 0rem;
}

.content-area.content-page-with-sidebar {
  margin-top: 20px;
}

.content-area.content-page-with-sidebar .container {
  padding: 0;
}

.content-area.bordered-section {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.default-theme .content-area.bg-white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme .content-area.bg-light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme .content-area.bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme .content-area.bg-blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme .content-area.white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme .content-area.light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme .content-area.light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme .content-area.blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.content-area.bg-size-auto {
  background-size: auto;
}

.content-area.bg-size-contain {
  background-size: contain;
}

.content-area.bg-size-cover {
  background-size: cover;
}

.content-area.bg-pos-x-default.bg-pos-y-default {
  background-position: 0% default;
}

.content-area.bg-pos-x-default.bg-pos-y-top {
  background-position: 0% top;
}

.content-area.bg-pos-x-default.bg-pos-y-center {
  background-position: 0% center;
}

.content-area.bg-pos-x-default.bg-pos-y-bottom {
  background-position: 0% bottom;
}

.content-area.bg-pos-x-left.bg-pos-y-default {
  background-position: left 0%;
}

.content-area.bg-pos-x-left.bg-pos-y-top {
  background-position: left top;
}

.content-area.bg-pos-x-left.bg-pos-y-center {
  background-position: left center;
}

.content-area.bg-pos-x-left.bg-pos-y-bottom {
  background-position: left bottom;
}

.content-area.bg-pos-x-center.bg-pos-y-default {
  background-position: center 0%;
}

.content-area.bg-pos-x-center.bg-pos-y-top {
  background-position: center top;
}

.content-area.bg-pos-x-center.bg-pos-y-center {
  background-position: center center;
}

.content-area.bg-pos-x-center.bg-pos-y-bottom {
  background-position: center bottom;
}

.content-area.bg-pos-x-right.bg-pos-y-default {
  background-position: right 0%;
}

.content-area.bg-pos-x-right.bg-pos-y-top {
  background-position: right top;
}

.content-area.bg-pos-x-right.bg-pos-y-center {
  background-position: right center;
}

.content-area.bg-pos-x-right.bg-pos-y-bottom {
  background-position: right bottom;
}

.content-area .container .content-section:before {
  content: " ";
  display: table;
}

.content-area .container .content-section .column-container {
  position: relative;
  min-height: 1px;
}

.content-area .container .content-section .column-container .wrapper h2.title {
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.25;
  font-weight: 600;
}

.content-area .container .content-section .column-container .wrapper .section_icon {
  margin-top: -45px;
  width: 77px;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  z-index: 2;
  align-self: start;
}

.content-area .container .content-section .column-container .wrapper .section_icon .icon-wrap {
  display: flex;
  justify-content: center;
}

.content-area .container .content-section .column-container .wrapper .section_icon .icon-wrap div.theIcon {
  border-radius: 100%;
}

.content-area .container .content-section .column-container .wrapper .section_icon .icon-wrap div.theIcon svg.icon {
  width: 45%;
  border-radius: 100%;
  padding: 1.2rem;
  overflow: visible;
}

.content-area .container .content-section .column-container .wrapper .section_icon .icon-wrap div.theIcon svg.icon use {
  width: 95%;
}

.content-area .container .content-section .column-container .wrapper .section_icon .vline-circle {
  border-radius: 50%;
  background-clip: border-box;
  margin: 50px auto 0;
  width: 7px;
  height: 7px;
  position: relative;
}

.content-area .container .content-section .column-container .wrapper .section_icon .vline-circle:before {
  content: "";
  height: 50px;
  width: 1px;
  display: block;
  position: absolute;
  top: -50px;
  left: 3px;
}

.content-area .container .content-section .column-container .wrapper .underline {
  margin-top: 25px;
  font-size: 0;
}

.content-area .container .content-section .column-container .wrapper .underline:before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 4px;
}

.content-area .container .content-section .column-container .wrapper .section-description,
.content-area .container .content-section .column-container .wrapper .section-title {
  margin-bottom: 35px;
}

.content-area .container .content-section .column-container .wrapper .section-description {
  margin: 0 0 35px;
}

.content-area .container .content-section .column-container .wrapper .flex-container {
  display: flex;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-start {
  justify-content: flex-start;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-center {
  justify-content: center;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-end {
  justify-content: end;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-space-between {
  justify-content: space-between;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-space-around {
  justify-content: space-around;
}

.content-area .container .content-section .column-container .wrapper .flex-container.align-space-evenly {
  justify-content: space-evenly;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item.sidebar {
  padding-right: 2rem;
}

.content-area .container .content-section .column-container .wrapper .flex-container.valign-top {
  align-items: flex-start;
}

.content-area .container .content-section .column-container .wrapper .flex-container.valign-center {
  align-items: center;
}

.content-area .container .content-section .column-container .wrapper .flex-container.valign-bottom {
  align-items: flex-end;
}

.content-area .container .content-section .column-container .wrapper .flex-container.same-height .flex-item {
  align-self: stretch;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-1 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-2 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-3 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-4 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-5 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-6 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-7 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-8 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-9 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-10 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-11 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container .flex-12 {
  width: 100%;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item {
  padding-right: 0;
  padding-left: 0;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-1 .flex-item {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-2 .flex-item {
  padding-right: 1rem;
  padding-left: 1rem;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-3 .flex-item {
  padding-right: 1rem;
  padding-left: 1rem;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-4 .flex-item {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.content-area .container .content-section .column-container .wrapper .flex-container.px-5 .flex-item {
  padding-right: 3rem;
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .content-area .container .content-section .column-container .wrapper .flex-container {
    flex-flow: wrap;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-item {
    margin-bottom: 20px;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item {
    padding: 0 2rem;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item.sidebar {
    padding: 0 2rem;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item.sidebar .flex-item {
    padding: 0;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.page {
    flex-direction: column-reverse;
  }
}

@media (max-width: 599px) {
  .content-area .container .content-section .column-container .wrapper .flex-container {
    flex-flow: wrap;
    flex-direction: column;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-item {
    margin-bottom: 1rem;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item {
    padding: 0 1rem;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item.sidebar {
    padding: 0 1rem;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container.px-0 .flex-item.sidebar .flex-item {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .content-area .container .content-section .column-container .wrapper .flex-container {
    flex-flow: row wrap;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-item {
    flex-grow: 0;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-1 {
    width: 8.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-2 {
    width: 16.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-3 {
    width: 25%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-4 {
    width: 33.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-5 {
    width: 41.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-6 {
    width: 50%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-7 {
    width: 58.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-8 {
    width: 66.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-9 {
    width: 75%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-10 {
    width: 83.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-11 {
    width: 91.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-12 {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .content-area .container .content-section .column-container .wrapper .flex-container {
    flex-flow: row wrap;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-item {
    flex-grow: 0;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-1 {
    width: 8.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-2 {
    width: 16.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-3 {
    width: 25%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-4 {
    width: 33.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-5 {
    width: 41.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-6 {
    width: 50%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-7 {
    width: 58.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-8 {
    width: 66.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-9 {
    width: 75%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-10 {
    width: 83.33333%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-11 {
    width: 91.66667%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-12 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-3 {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (min-width: 0px) and (max-width: 599px) {
  .content-area .container .content-section .column-container .wrapper .flex-container .flex-1 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-2 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-3 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-4 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-5 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-6 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-7 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-8 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-9 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-10 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-11 {
    width: 100%;
  }

  .content-area .container .content-section .column-container .wrapper .flex-container .flex-12 {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .content-area .container .content-section .column-container .flex-container {
    flex-flow: wrap;
  }

  .content-area .container .content-section .column-container .flex-container .flex-item {
    margin-bottom: 1rem;
  }

  .content-area .container .content-section .column-container .flex-container.px-0 .flex-item {
    padding: 0;
  }

  .content-area .container .content-section .column-container .flex-container.px-0 .flex-item.sidebar {
    padding: 0;
  }

  .content-area .container .content-section .column-container .flex-container.px-0 .flex-item.sidebar .flex-item {
    padding: 0;
  }
}

@media (min-width: 769px) and (max-width: 940px) {
  .content-area.bg-pos-x-right.bg-pos-y-bottom {
    background-size: 50%;
  }
}

@media (max-width: 768px) {
  .content-area.bg-pos-x-right.bg-pos-y-bottom {
    background-size: 25%;
  }

  .content-page-with-sidebar .content-area .container .content-section .column-container .wrapper .flex-container.px-3 .flex-4 {
    padding: 0 !important;
  }
}

@media (max-width: 576px) {
  .content-area.bg-pos-x-right.bg-pos-y-bottom {
    background-size: 35%;
  }

  .content-area .container {
    padding: 0;
  }
}

.cb-accordion {
  background: none;
}

.default-theme .cb-accordion.active .panel {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme .cb-accordion:first-child {
  border-top: 1px solid #e0e0e0;
  border-top: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme .cb-accordion.bordered {
  border-left: 1px solid #e0e0e0;
  border-left: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme .cb-accordion.bordered {
  border-right: 1px solid #e0e0e0;
  border-right: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.cb-accordion .cb-accordion-button {
  background: none;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.default-theme .cb-accordion .cb-accordion-button {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme .cb-accordion .cb-accordion-button {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.cb-accordion .cb-accordion-button .icon-wrapper {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin-right: 20px;
}

.cb-accordion .cb-accordion-button .icon-wrapper svg {
  height: 12px;
  width: 12px;
}

.default-theme .cb-accordion .cb-accordion-button .icon-wrapper svg use {
  fill: #005cad;
  fill: var(--theme-default-theme-primary-main, #005cad);
}

.cb-accordion .cb-accordion-button .label {
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
}

.default-theme .cb-accordion .cb-accordion-button:hover,
.cb-accordion .cb-accordion-button.active {
  background-color: #f5fafd;
  background-color: var(--theme-default-theme-primary-main-alpha, #f5fafd);
}

.default-theme .cb-accordion .cb-accordion-button:hover,
.cb-accordion .cb-accordion-button.active {
  color: #00588a;
  color: var(--theme-default-theme-primary-dark, #00588a);
}

.default-theme .cb-accordion .cb-accordion-button:hover svg use,
.cb-accordion .cb-accordion-button.active svg use {
  fill: #00588a;
  fill: var(--theme-default-theme-primary-dark, #00588a);
}

.cb-accordion .cb-accordion-button.active svg {
  transform: rotate(90deg);
}

.cb-accordion .panel {
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.cb-accordion .panel .panel-padding {
  padding: 20px;
}

.cb-accordion.edit .panel {
  max-height: none !important;
}

/* Sass Config */
/* End Sass Config */
#slides {
  position: relative;
  padding-bottom: 3rem;
}

#slides,
#slides-items .slide-item,
figure {
  max-width: 100%;
}

#slides-items .slide-item figcaption {
  position: absolute;
  bottom: 0;
  width: 1200px;
  max-width: calc(100% - 6.8rem);
  max-height: calc(100% - 3.4rem);
  overflow: auto;
  padding: 1.7rem 3.4rem;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

#slides-items .slide-item figcaption a {
  color: #fff;
}

#slides-items .slide-item figcaption a:hover,
#slides-items .slide-item figcaption a:focus,
#slides-items .slide-item figcaption a:active {
  text-decoration: none;
}

/* CSS Transition */
#slides-items .slideactive {
  opacity: 1;
  transition: opacity 3s;
  visibility: visible;
}

/* Control Buttons */
.slides-control button {
  background-color: rgba(0, 0, 0, 0.7);
}

.slides-control button svg,
.slides-control button g {
  fill: #f6f6f6;
}

.slides-control button:hover,
.slides-control button:focus,
.slides-control button:active {
  background-color: rgba(255, 255, 255, 0.9);
}

.slides-control button:hover svg,
.slides-control button:focus svg,
.slides-control button:active svg {
  fill: #474747;
}

#slides .slides-control button {
  position: absolute;
  z-index: 1;
}

#slides .slides-prev,
#slides .slides-next {
  top: calc(50% - 3rem);
  padding: 0.6rem;
}

#slides .slides-prev svg,
#slides .slides-next svg {
  width: 1.1rem;
  height: 1.1rem;
}

#slides .slides-prev {
  left: 0;
  border-radius: 0px 7px 7px 0px;
}

#slides .slides-next {
  right: 0;
  border-radius: 7px 0px 0px 7px;
}

#slides .slides-playpause {
  top: 0;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  padding: 0.7rem;
  background-color: rgba(0, 0, 0, 0.7);
}

#slides .slides-playpause svg {
  width: 0.7rem;
  height: 0.7rem;
}

#slides .slides-playpause .play,
#slides .slides-playpause .playpause.paused .pause {
  display: none;
}

#slides .slides-playpause .playpause.paused .play {
  display: block;
}

section.slider {
  display: flex;
}

section.slider aside.navigation-aside {
  width: 30%;
  align-self: center;
}

section.slider aside.navigation-aside div.rich-title {
  margin-bottom: 35px;
}

section.slider aside.navigation-aside div.nav {
  display: flex;
}

section.slider aside.navigation-aside div.nav a.slider-nav {
  height: 72px;
  width: 72px;
  padding: 1.5rem;
  border-radius: 100%;
  cursor: pointer;
}

@media (max-width: 599px) {
  section.slider aside.navigation-aside div.nav a.slider-nav {
    height: 40px;
    width: 40px;
    padding: .75rem;
  }
}

.default-theme section.slider aside.navigation-aside div.nav a.slider-nav {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

section.slider aside.navigation-aside div.nav a.slider-nav:first-child {
  margin-right: 2rem;
}

.default-theme section.slider aside.navigation-aside div.nav a.slider-nav svg use {
  fill: #ffffff;
  fill: var(--theme-default-theme-primary-contrast, #ffffff);
}

section.slider div#slides-items {
  width: 70%;
  overflow: hidden;
  padding: 0.5rem 0;
}

section.slider div#slides-items div.slide-container {
  width: 10000px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

section.slider div#slides-items div.slide-container .slide-item {
  box-sizing: border-box;
  margin: 0 1rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

section.slider div.slides-dots {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 1200px;
  max-width: 100%;
  text-align: right;
}

section.slider div.slides-dots button {
  width: 16px;
  height: 16px;
  margin: 0 5px;
  border-style: none;
  touch-action: manipulation;
  display: inline-block;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  border-radius: 100%;
}

.default-theme section.slider div.slides-dots button {
  border: solid #005cad 1px;
  border: solid var(--theme-default-theme-primary-main, #005cad);
}

.default-theme section.slider div.slides-dots button:hover,
section.slider div.slides-dots button:focus,
section.slider div.slides-dots button:active,
section.slider div.slides-dots button[aria-selected="true"] {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

section.slider.slider-style-2 {
  flex-direction: column;
}

section.slider.slider-style-2 .slider-content {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.slider.slider-style-2 .slider-content a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.default-theme section.slider.slider-style-2 .slider-content a {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-primary-contrast, #ffffff);
}

section.slider.slider-style-2 .slider-content a svg {
  width: 40%;
}

.default-theme section.slider.slider-style-2 .slider-content a svg use {
  fill: #005cad;
  fill: var(--theme-default-theme-primary-main, #005cad);
}

section.slider.slider-style-2 .slider-content .sm-quote {
  background: none;
}

section.slider.slider-style-2 .slider-content .sm-quote .quote-inner-wrap {
  display: flex;
  flex-direction: column-reverse;
}

section.slider.slider-style-2 div#slides-items div.slide-container .slide-item {
  box-shadow: none;
}

section.slider.slider-style-2 div.slides-dots {
  text-align: center;
  right: 0 !important;
}

.cssForEditor section.slider div#slides-items div.slide-container {
  width: 100%;
  flex-direction: column;
}

.cssForEditor section.slider div#slides-items div.slide-container>* {
  flex-grow: 1;
}

.cssForEditor section.slider div#slides-items div.slide-container .clone {
  display: none;
}

.cssForEditor #slides-items .slide-item:not(.slideactive) {
  opacity: 1;
  visibility: visible;
}

.cssForEditor #slides-items .slide-item {
  position: unset;
}

.cssForEditor #slides,
.cssForEditor #slides-items .slide-item,
.cssForEditor figure {
  height: auto;
  max-height: unset;
}

@media (max-width: 768px) {
  section.slider {
    display: block;
  }

  section.slider#slides {
    padding-bottom: 30px;
  }

  section.slider div.slides-dots {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  section.slider aside.navigation-aside {
    clear: both;
    width: 100%;
    text-align: center;
  }

  section.slider aside.navigation-aside div.nav {
    text-align: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  section.slider div#slides-items {
    clear: both;
    width: 100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav,
  .mobile-only {
    display: none !important;
  }
}

#page-content-wrapper header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  width: 100%;
}

#page-content-wrapper header .responsive-banner {
  position: relative;
  z-index: 1;
}

#page-content-wrapper header .main-header {
  position: relative;
  z-index: 2;
}

body.menu-open {
  overflow: hidden;
}

.default-theme div.main-header {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-bg-primary, #ffffff);
}

div.main-header div.header-wrapper {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

div.main-header .secondary-menu-wrapper {
  background: #F3F5F6;
}

.default-theme div.main-header .secondary-menu-wrapper {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

div.main-header .secondary-menu-wrapper .header-container {
  width: 100%;
}

div.main-header .secondary-menu-wrapper div.second-menu {
  text-align: right;
  width: 100%;
  display: flex;
  padding: 0;
  justify-content: end;
}

div.main-header .secondary-menu-wrapper div.second-menu .telephone {
  display: none;
}

div.main-header .secondary-menu-wrapper div.second-menu ul {
  display: flex;
}

div.main-header .secondary-menu-wrapper div.second-menu ul li {
  padding-left: 20px;
  line-height: 30px;
}

div.main-header .secondary-menu-wrapper div.second-menu ul li:first-child {
  padding: 0;
}

div.main-header .secondary-menu-wrapper div.second-menu ul li a {
  line-height: 35px;
  height: 35px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li a {
  color: #333333;
  color: var(--theme-default-theme-header-fg, #333333);
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li.link-emphasize a {
  color: #005cad;
  color: var(--theme-default-theme-header-fg-hover, #005cad);
}

div.main-header .secondary-menu-wrapper div.second-menu ul li:hover a {
  text-decoration: underline;
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li:hover a {
  color: #005cad;
  color: var(--theme-default-theme-header-fg-hover, #005cad);
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li:hover.link-emphasize a {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher {
  display: inline-flex;
  align-items: center;
}

div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher span.material-symbols-rounded {
  line-height: 36px;
  margin-right: 5px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher span.material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher a {
  display: inline-flex;
  line-height: 36px;
  font-weight: 600;
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher a {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header.sticky {
  position: fixed;
  z-index: 420;
  width: 100%;
  top: 0;
}

div.main-header ul {
  list-style: none;
}

div.main-header ul li {
  margin-bottom: 0;
}

div.main-header svg.icon {
  max-width: 24px;
}

div.main-header div.header-container {
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

div.main-header div.header-container div.header-logo {
  max-height: 100px;
  display: flex;
  align-items: center;
}

div.main-header div.header-container div.header-logo a {
  display: contents;
}

div.main-header div.header-container div.header-logo img {
  height: 44px;
  margin-right: 40px;
}

div.main-header div.header-container nav#navigation {
  height: 100px;
  width: 100%;
}

div.main-header div.header-container nav#navigation>ul {
  display: flex;
}

div.main-header div.header-container nav#navigation>ul>li {
  height: 100px;
  transition: all 0.3s linear;
}

div.main-header div.header-container nav#navigation>ul>li>div>button,
div.main-header div.header-container nav#navigation>ul>li>div>a {
  background: none;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 0;
  height: 100px;
  line-height: 100px;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

div.main-header div.header-container nav#navigation>ul>li:hover {
  background-color: #e8f5fd;
}

.default-theme div.main-header div.header-container nav#navigation>ul>li.active {
  border-bottom: 6px solid #077AC0;
  border-bottom: 6px solid var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header div.header-container nav#navigation>ul>li.active>a,
div.main-header div.header-container nav#navigation>ul>li.active>button {
  text-decoration: none;
}

div.main-header div.header-container nav#navigation>ul>li.active::after {
  display: none;
}

div.main-header div.header-container nav#navigation>ul>li svg {
  display: none;
}

div.main-header div.header-container nav#navigation>ul>li svg.mobile {
  display: none;
  transition: 0.5s;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu {
  visibility: hidden;
  min-height: 300px;
  background: #f7f6f6;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  box-shadow: 0px 30px 30px -10px rgba(0, 0, 0, 0.2);
}

.default-theme div.main-header div.header-container nav#navigation>ul>li div.mega-menu {
  border-top: 1px solid #e0e0e0;
  border-top: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme div.main-header div.header-container nav#navigation>ul>li div.mega-menu {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu * {
  opacity: 0.5;
  transition: all 0 linear;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container {
  padding: 0;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col {
  margin: 0 15px;
  padding: 30px;
  min-height: 300px;
  -ms-flex: 1;
  flex: 1;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col .col-content {
  display: flex;
  flex-direction: column;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col.featured {
  min-width: 500px;
  background: #fff;
  border-radius: 5px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col .menu-col-title {
  margin-bottom: 20px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col .menu-col-title span {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 7px;
  line-height: 40px;
  height: 40px;
  display: inline;
}

.default-theme div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col .menu-col-title span {
  border-bottom: 6px solid #077AC0;
  border-bottom: 6px solid var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li {
  display: block;
  height: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item {
  display: flex;
  line-height: 28px;
  margin-bottom: 12px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item * {
  display: inline-block;
  line-height: 24px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item a {
  color: #333333;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item a:hover {
  color: #077ac0;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item span {
  color: #077ac0;
  margin-left: 5px;
  display: flex;
  align-items: center;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-item:last-child {
  margin-bottom: 0;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-component a {
  display: block;
}

div.main-header div.header-container nav#navigation>ul>li.submenu-open {
  background-color: #e8f5fd;
}

div.main-header div.header-container nav#navigation>ul>li.submenu-open div.mega-menu {
  visibility: visible;
}

div.main-header div.header-container nav#navigation>ul>li.submenu-open div.mega-menu * {
  opacity: 1;
  transition: all 0.2s linear;
}

div.main-header div.header-container nav#navigation>ul>li:last-child {
  margin-right: 0;
}

div.main-header div.header-container div.menu-extras {
  height: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: auto;
}

div.main-header div.header-container div.menu-extras div.search-and-phone {
  text-align: right;
  line-height: 36px;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100px;
}

div.main-header div.header-container div.menu-extras div.search-and-phone form {
  display: inline-block;
  height: 36px;
  margin-right: 15px;
}

div.main-header div.header-container div.menu-extras div.search-and-phone form input {
  display: none;
}

div.main-header div.header-container div.menu-extras div.search-and-phone form button.search-icon {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

div.main-header div.header-container div.menu-extras div.search-and-phone form button.search-icon span.material-symbols-rounded {
  font-size: 32px;
  line-height: 36px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

.default-theme div.main-header div.header-container div.menu-extras div.search-and-phone form button.search-icon span.material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header div.header-container div.menu-extras div.search-and-phone form button.search-icon:hover {
  transition: 1s;
}

div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone {
  line-height: 36px;
  display: inline-flex;
}

div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone a {
  line-height: 36px;
  display: inline-flex;
}

div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone a span.material-symbols-rounded {
  font-size: 32px;
  line-height: 36px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

.default-theme div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone a span.material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone a.phone-menu-text {
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
}

.default-theme div.main-header div.header-container div.menu-extras div.search-and-phone span.telephone a.phone-menu-text {
  color: #005cad;
  color: var(--theme-default-theme-header-fg-hover, #005cad);
}

div.main-header div.header-container .accessibility-links {
  height: 36px;
  width: 100%;
}

div.main-header div.header-container .accessibility-links a {
  position: relative;
  left: -5000px;
  width: auto;
  line-height: 36px;
}

div.main-header div.header-container .accessibility-links a:focus {
  left: auto;
}

div.main-header div.header-container .mobile-menu {
  display: none;
}

.cta-menu,
.cta-menu2 {
  height: 100px;
  padding-left: 20px;
  overflow: visible;
}

.cta-menu .cta-menu-shadow,
.cta-menu .cta-menu2-shadow,
.cta-menu2 .cta-menu-shadow,
.cta-menu2 .cta-menu2-shadow {
  min-height: 50px;
  margin-top: 25px;
  position: relative;
  z-index: 12;
  border-radius: 5px;
  display: block;
}

.cta-menu button,
.cta-menu2 button {
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 50px;
  cursor: pointer;
  min-width: 200px;
  height: 50px;
  padding: 0 15px;
  text-align: center;
}

.default-theme .cta-menu button,
.cta-menu2 button {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.cta-menu button .arrow-up,
.cta-menu2 button .arrow-up {
  display: none;
  font-size: 10px;
  line-height: 50px;
}

.cta-menu button .arrow-down,
.cta-menu2 button .arrow-down {
  font-size: 10px;
  line-height: 50px;
}

.cta-menu button.open .arrow-up,
.cta-menu2 button.open .arrow-up {
  display: inline;
}

.cta-menu button.open .arrow-down,
.cta-menu2 button.open .arrow-down {
  display: none;
}

.cta-menu .cta-menu-dropdown,
.cta-menu .cta-menu2-dropdown,
.cta-menu2 .cta-menu-dropdown,
.cta-menu2 .cta-menu2-dropdown {
  border-radius: 5px;
  position: relative;
  z-index: 10;
  height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: height 0.2s linear;
  text-align: center;
}

.cta-menu .cta-menu-dropdown.open,
.cta-menu .cta-menu2-dropdown.open,
.cta-menu2 .cta-menu-dropdown.open,
.cta-menu2 .cta-menu2-dropdown.open {
  padding: 0 15px 15px 15px;
  transition: height 0.2s linear;
}

.cta-menu .cta-menu-dropdown li,
.cta-menu .cta-menu-dropdown a,
.cta-menu .cta-menu2-dropdown li,
.cta-menu .cta-menu2-dropdown a,
.cta-menu2 .cta-menu-dropdown li,
.cta-menu2 .cta-menu-dropdown a,
.cta-menu2 .cta-menu2-dropdown li,
.cta-menu2 .cta-menu2-dropdown a {
  display: block;
  width: 100%;
  color: white;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 32px;
}

.cta-menu .cta-menu-dropdown li:hover,
.cta-menu .cta-menu-dropdown a:hover,
.cta-menu .cta-menu2-dropdown li:hover,
.cta-menu .cta-menu2-dropdown a:hover,
.cta-menu2 .cta-menu-dropdown li:hover,
.cta-menu2 .cta-menu-dropdown a:hover,
.cta-menu2 .cta-menu2-dropdown li:hover,
.cta-menu2 .cta-menu2-dropdown a:hover {
  text-decoration: underline;
}

.cta-menu .cta-menu-dropdown,
.cta-menu2 .cta-menu-dropdown {
  background-color: #077AC0;
}

.cta-menu .cta-menu2-dropdown,
.cta-menu2 .cta-menu2-dropdown {
  background-color: white;
}

.mobile-nav {
  position: relative;
}

.mobile-header {
  height: 80px;
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header .mobile-logo {
  display: block;
}

.mobile-header .mobile-logo img {
  max-height: 50px;
}

.mobile-header .mobile-logo a {
  display: flex;
}

.mobile-header .mobile-header-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header .mobile-header-buttons .telephone {
  margin-right: 20px;
}

.mobile-header .mobile-header-buttons .telephone .material-symbols-rounded {
  display: block;
  font-size: 30px;
  font-variation-settings: 'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
}

.default-theme .mobile-header .mobile-header-buttons .telephone .material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-header .mobile-header-buttons .menu-toggle {
  display: inline-block;
  position: relative;
  right: 0;
  cursor: pointer;
}

.mobile-header .mobile-header-buttons .menu-toggle .material-symbols-rounded {
  display: block;
  font-size: 36px;
  font-variation-settings: 'FILL' 0,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
}

.default-theme .mobile-header .mobile-header-buttons .menu-toggle .material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  height: 0;
  width: 100vw;
  z-index: 9999;
  transition: height 0.3s linear;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

.mobile-panel.open {
  transition: height 0.3s linear;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 20px;
}

.mobile-panel .mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  padding: 10px;
  height: 80px;
  border-bottom: 1px solid;
}

.default-theme .mobile-panel .mobile-panel-top {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

.default-theme .mobile-panel .mobile-panel-top {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-bg-primary, #ffffff);
}

.mobile-panel .mobile-panel-top ul {
  display: flex;
  align-items: center;
}

.mobile-panel .mobile-panel-top .language-switcher {
  display: flex;
  align-items: center;
  line-height: 36px;
}

.mobile-panel .mobile-panel-top .language-switcher a {
  display: inline-flex;
  line-height: 36px;
  font-weight: 600;
}

.default-theme .mobile-panel .mobile-panel-top .language-switcher a {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel .mobile-panel-top .language-switcher a span.material-symbols-rounded {
  line-height: 36px;
  margin-right: 5px;
  font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

.default-theme .mobile-panel .mobile-panel-top .language-switcher a span.material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel .mobile-menu-close {
  display: flex;
  justify-self: flex-end;
}

.default-theme .mobile-panel .mobile-menu-close {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel .mobile-menu-close span {
  font-size: 36px;
}

.mobile-panel #mobile-navigation>ul {
  border-bottom: 1px solid;
  margin-bottom: 20px;
}

.default-theme .mobile-panel #mobile-navigation>ul {
  border-color: #e0e0e0;
  border-color: var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.mobile-panel #mobile-navigation>ul>li {
  display: block;
  width: 100%;
  transition: all 0.3s linear;
  text-align: left;
  border-top: 1px solid;
}

.default-theme .mobile-panel #mobile-navigation>ul>li {
  border-color: #e0e0e0;
  border-color: var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.mobile-panel #mobile-navigation>ul>li:first-child {
  border-top: none;
}

.mobile-panel #mobile-navigation>ul>li.active {
  padding-bottom: 10px;
}

.default-theme .mobile-panel #mobile-navigation>ul>li.active {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-cb-light-gray, #f6f6f6);
}

.mobile-panel #mobile-navigation>ul>li.active div.sub-menu-content {
  display: block;
  height: auto;
}

.mobile-panel #mobile-navigation>ul>li.active div.sub-menu-content .header-container {
  max-width: inherit;
  padding: 0;
  margin: 0;
  display: block;
}

.mobile-panel #mobile-navigation>ul>li.active>div>button>span.expand-icon-open {
  display: none;
}

.mobile-panel #mobile-navigation>ul>li.active>div>button>span.expand-icon-close {
  display: inline;
}

.mobile-panel #mobile-navigation>ul>li>div>button,
.mobile-panel #mobile-navigation>ul>li>div>a {
  width: 100%;
  padding: 0 20px;
  border: none;
  background: none;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  text-align: left;
}

.mobile-panel #mobile-navigation>ul>li>div>button {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', Arial, sans-serif;
}

.mobile-panel #mobile-navigation>ul>li>div>button>span {
  line-height: 50px;
}

.default-theme .mobile-panel #mobile-navigation>ul>li>div>button>span {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel #mobile-navigation>ul>li>div>button>span.material-symbols-rounded {
  line-height: 50px;
  font-size: 36px;
  font-variation-settings: 'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 36;
}

.mobile-panel #mobile-navigation>ul>li>div>button>span.expand-icon-close {
  display: none;
}

.mobile-panel #mobile-navigation>ul>li div.sub-menu-content {
  display: none;
  padding: 0 20px;
}

.mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col {
  padding-bottom: 20px;
}

.mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col-title {
  margin-bottom: 10px;
}

.mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col-title h4 {
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 4px;
}

.default-theme .mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col-title h4 {
  color: #4F4F4F;
  color: var(--theme-default-theme-cb-text-secondary, #4F4F4F);
}

.default-theme .mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col-title h4 {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.mobile-panel #mobile-navigation>ul>li a {
  font-weight: bold;
}

.default-theme .mobile-panel #mobile-navigation>ul>li a {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.mobile-panel #mobile-navigation>ul>li li.second-level-item {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.mobile-panel #mobile-navigation>ul>li li.second-level-item a {
  display: inline;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

.mobile-panel #mobile-navigation>ul>li li.second-level-item span {
  line-height: 30px;
}

.default-theme .mobile-panel #mobile-navigation>ul>li li.second-level-item span {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel #mobile-navigation>ul>li li.second-level-item span.material-symbols-rounded {
  line-height: 30px;
  font-variation-settings: 'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 30;
}

.mobile-panel div.search-and-phone {
  display: flex;
  align-items: center;
  padding: 20px;
  text-align: center;
  justify-content: center;
}

.mobile-panel div.search-and-phone span.telephone {
  line-height: 30px;
  display: flex;
}

.mobile-panel div.search-and-phone span.telephone a {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.default-theme .mobile-panel div.search-and-phone span.telephone a {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel div.search-and-phone span.telephone .material-symbols-rounded {
  display: inline-block;
  font-size: 30px;
  margin-right: 10px;
  font-variation-settings: 'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
}

.default-theme .mobile-panel div.search-and-phone span.telephone .material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel div.second-menu {
  padding: 0 20px;
}

.mobile-panel div.second-menu ul li {
  display: flex;
  align-items: center;
  line-height: 30px;
}

.mobile-panel div.second-menu ul li a {
  line-height: 30px;
}

.default-theme .mobile-panel div.second-menu ul li a {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.mobile-panel div.second-menu ul li .material-symbols-rounded {
  font-size: 24px;
  line-height: 30px;
  font-variation-settings: 'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 30;
}

.default-theme .mobile-panel div.second-menu ul li .material-symbols-rounded {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.mobile-panel .cta-menu-wrapper .cta-menu {
  height: auto;
  padding: 0 20px;
  margin-top: 20px;
}

.mobile-panel .cta-menu-wrapper .cta-menu .cta-menu-shadow {
  margin: 0;
}

.mobile-panel .cta-menu-wrapper .cta-menu button {
  width: 100%;
}

@media (max-width: 1279px) {
  div.main-header .desktop-nav {
    display: none;
  }

  div.main-header .secondary-menu-wrapper {
    display: none;
  }

  div.main-header div.container nav#navigation,
  div.main-header div.container div.menu-extras {
    display: none;
  }

  div.main-header div.container div.header-logo {
    max-height: 90px;
    width: 50%;
  }

  div.main-header div.container div.header-logo img {
    margin: 15px 15px 15px 0;
  }

  div.main-header div.container .cta-menu-wrapper {
    display: block;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid;
  }

  .default-theme div.main-header div.container .cta-menu-wrapper {
    border-color: #e5e5e5;
    border-color: var(--theme-default-theme-border, #e5e5e5);
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    min-height: 50px;
    height: auto;
    padding: 0;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu button {
    margin: 0;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu-shadow {
    margin-top: 0;
    box-shadow: none;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu-dropdown {
    text-align: center;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu-dropdown a {
    visibility: hidden;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu-dropdown.open {
    padding: 10px 15px;
  }

  div.main-header div.container .cta-menu-wrapper .cta-menu-dropdown.open a {
    visibility: visible;
  }
}

section.tabs-container {
  border-radius: 5px;
}

.default-theme section.tabs-container.bordered-component {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

section.tabs-container.bordered-component .accordion:last-child .accordion-button:not(.active) {
  border-bottom: 0;
}

section.tabs-container>div.tabs-buttons-container {
  display: flex;
  justify-content: space-around;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

section.tabs-container>div.tabs-buttons-container>div.tab-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  min-height: 50px;
  max-height: 100px;
  cursor: pointer;
  box-sizing: border-box;
  background: none;
  font-size: 16px;
  font-weight: bold;
  background-color: #FFFFFF;
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button {
  border-right: 1px solid #e0e0e0;
  border-right: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

section.tabs-container>div.tabs-buttons-container>div.tab-button:first-child {
  border-top-left-radius: 5px;
}

section.tabs-container>div.tabs-buttons-container>div.tab-button:last-child {
  margin-right: 0;
  border-right: 0;
  border-top-right-radius: 5px;
}

section.tabs-container>div.tabs-buttons-container>div.tab-button img {
  opacity: 50%;
  transition: all 0.3s;
  max-width: 200px;
  height: auto;
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button.active {
  border-bottom: 6px solid #077AC0;
  border-bottom: 6px solid var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button.active {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button.active {
  background-color: #e8f5fd;
  background-color: var(--theme-default-theme-bg-secondary, #e8f5fd);
}

section.tabs-container>div.tabs-buttons-container>div.tab-button.active img {
  opacity: 100%;
  transition: all 0.3s;
}

section.tabs-container>div.tabs-buttons-container>div.tab-button:hover {
  transition: 0.3s;
}

.default-theme section.tabs-container>div.tabs-buttons-container>div.tab-button:hover {
  color: #00588a;
  color: var(--theme-default-theme-primary-dark, #00588a);
}

section.tabs-container>div.tab-container.padded-tab {
  padding: 20px;
}

section.tabs-container>div.tab-container>div.tab-content {
  display: none;
}

section.tabs-container>div.tab-container>div.tab-content.active {
  display: block;
}

section.tabs-container.edit>div.tab-container>div.tab-content {
  display: block;
}

@media (max-width: 1279px) {
  section.tabs-container>div.tab-container.padded-tab {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  section.tabs-container>div.tabs-buttons-container>div.tab-button img {
    width: 50%;
    height: auto;
  }
}

.package-fees-wrapper {
  margin: 3rem 0;
}

.package-fees-wrapper .package-fees-title-wrapper {
  text-align: center;
}

.package-fees-wrapper .package-fees-title-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 1rem;
}

.package-fees-wrapper .package-fees-title-wrapper p {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
}

.package-fees-wrapper .package-cards-wrapper {
  margin: 2rem 0;
  display: flex;
}

.package-fees-wrapper .package-cards-wrapper .package-card {
  flex-grow: 3;
  background-color: white;
  border: 1px solid #ddd;
  padding: 0 25px;
  margin: 50px 0 20px;
  color: #999;
  width: 33.333%;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-title {
  line-height: 65px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-title h3 {
  font-size: 27px;
  font-weight: 500;
  color: #666;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-price-before {
  font-size: 13px;
  text-align: left;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-price {
  color: #fec64d;
  font-size: 68px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  margin-top: -10px;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-price span {
  display: inline-block;
  line-height: 70px;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-price-after {
  font-size: 13px;
  text-align: right;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-info {
  margin-top: 20px;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-destination,
.package-fees-wrapper .package-cards-wrapper .package-card .package-card-duration,
.package-fees-wrapper .package-cards-wrapper .package-card .package-card-age {
  text-align: center;
  font-size: 16px;
  line-height: 2.5em;
}

.package-fees-wrapper .package-cards-wrapper .package-card .package-card-button {
  text-align: center;
  margin: 50px 0;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured {
  background-color: #0099dd;
  margin: 0 -1px;
  color: white;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-title {
  border-bottom: 1px solid #80b1ff;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-title h3 {
  color: white;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price {
  color: white;
  font-size: 90px;
  font-weight: normal;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price span {
  line-height: 100px;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-info {
  margin-top: 40px;
}

.package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-button {
  align-self: flex-end;
}

@media (max-width: 992px) {
  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-title h3 {
    font-size: 22px;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-price {
    font-size: 48px;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-price span {
    line-height: 62px;
    margin-top: 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price {
    color: white;
    font-size: 70px;
    font-weight: normal;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price span {
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  .package-fees-wrapper {
    margin: 2em 0;
  }

  .package-fees-wrapper .package-cards-wrapper {
    display: block;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card {
    margin: 25px 0;
    width: 100%;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-title h3 {
    margin-bottom: 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-price {
    font-size: 42px;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-price span {
    line-height: 62px;
    margin-top: 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-info {
    margin-top: 20px;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card .package-card-button {
    margin: 25px 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured {
    margin: 25px 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price {
    font-size: 52px;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-price span {
    line-height: 62px;
    margin-top: 0;
  }

  .package-fees-wrapper .package-cards-wrapper .package-card.featured .package-card-info {
    margin-top: 20px;
  }
}

div.product-card-wrapper {
  margin-bottom: 30px;
}

div.product-card-wrapper:last-child {
  margin-bottom: 0;
}

div.product-card-wrapper a.product-card-link:hover div.product-card {
  transition: background-color, box-shadow 0.3s linear;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.35);
}

.default-theme div.product-card-wrapper a.product-card-link:hover div.product-card {
  background-color: #e8f5fd;
  background-color: var(--theme-default-theme-bg-secondary, #e8f5fd);
}

div.product-card-wrapper div.product-card {
  display: flex;
  min-height: 100px;
  align-items: stretch;
  background-color: #ffffff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  transition: background-color, box-shadow 0.3s linear;
}

.default-theme div.product-card-wrapper div.product-card {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

div.product-card-wrapper div.product-card.small div.img {
  padding: 10px;
}

div.product-card-wrapper div.product-card.small div.img img {
  max-width: 36px;
}

div.product-card-wrapper div.product-card.small div.content {
  padding: 10px 10px 10px 0;
}

div.product-card-wrapper div.product-card.small div.content .title {
  font-size: 16px;
  line-height: 22px;
}

div.product-card-wrapper div.product-card.small div.content .desc * {
  font-size: 14px;
}

div.product-card-wrapper div.product-card.small div.link-arrow .material-symbols-rounded {
  font-size: 40px;
}

div.product-card-wrapper div.product-card.rounded-border {
  border-radius: 5px;
}

div.product-card-wrapper div.product-card.highlight-border {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.default-theme div.product-card-wrapper div.product-card.highlight-border {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme div.product-card-wrapper div.product-card.highlight-border {
  border-left: 6px solid #077AC0;
  border-left: 6px solid var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-card-wrapper div.product-card.no-padding div.img {
  padding: 0;
}

div.product-card-wrapper div.product-card.no-padding div.img img {
  max-height: 120px;
  width: auto;
}

div.product-card-wrapper div.product-card.no-padding div.content {
  padding-left: 20px;
}

.default-theme div.product-card-wrapper div.product-card.with-bg-color div.img {
  background-color: #e8f5fd;
  background-color: var(--theme-default-theme-bg-secondary, #e8f5fd);
}

div.product-card-wrapper div.product-card div.img {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

div.product-card-wrapper div.product-card div.img img {
  max-height: 64px;
  width: auto;
}

.default-theme div.product-card-wrapper div.product-card.with-bg-color div.img {
  background-color: #e8f5fd;
  background-color: var(--theme-default-theme-bg-secondary, #e8f5fd);
}

div.product-card-wrapper div.product-card.with-bg-color div.content {
  padding-left: 20px;
}

div.product-card-wrapper div.product-card div.content {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  flex-direction: column;
  flex: auto;
  padding-right: 20px;
}

div.product-card-wrapper div.product-card div.content .title {
  font-size: 20px;
  line-height: 28px;
  align-self: flex-start;
  font-weight: bold;
  margin: 0;
}

.default-theme div.product-card-wrapper div.product-card div.content .title {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

div.product-card-wrapper div.product-card div.content .desc {
  align-self: flex-start;
  margin: 5px 0 0 0;
}

div.product-card-wrapper div.product-card div.content .desc * {
  margin: 0;
}

.default-theme div.product-card-wrapper div.product-card div.content .desc * {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-card-wrapper div.product-card div.link-arrow {
  display: flex;
  align-items: center;
}

.default-theme div.product-card-wrapper div.product-card div.link-arrow {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-card-wrapper div.product-card div.link-arrow .material-symbols-rounded {
  font-size: 64px;
}

@media (max-width: 1279px) {
  div.product-card-wrapper div.product-card {
    min-height: 100px;
  }

  div.product-card-wrapper div.product-card div.img {
    padding: 10px;
  }

  div.product-card-wrapper div.product-card div.content {
    padding: 10px 10px 10px 0;
  }

  div.product-card-wrapper div.product-card div.content .title {
    font-size: 20px;
  }

  div.product-card-wrapper div.product-card div.content .desc * {
    font-size: 14px;
    line-height: 1.2em;
  }

  div.product-card-wrapper div.product-card.small div.img {
    padding: 10px;
  }

  div.product-card-wrapper div.product-card.small div.img img {
    max-width: 40px;
  }

  div.product-card-wrapper div.product-card.small div.content {
    padding: 10px 10px 10px 0;
  }

  div.product-card-wrapper div.product-card.small div.content .title {
    font-size: 14px;
  }

  div.product-card-wrapper div.product-card.small div.link-arrow .material-symbols-rounded {
    font-size: 40px;
  }

  div.product-card-wrapper div.product-card.with-bg-color div.content {
    padding-left: 10px;
  }
}

@media (max-width: 1024px) {
  div.product-card-wrapper div.product-card {
    min-height: 120px;
  }

  div.product-card-wrapper div.product-card div.content .title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  div.product-card-wrapper {
    margin-bottom: 20px;
  }

  div.product-card-wrapper div.product-card {
    min-height: inherit;
  }

  div.product-card-wrapper div.product-card div.img {
    padding: 10px;
  }

  div.product-card-wrapper div.product-card div.img img {
    max-width: 48px;
    height: auto;
  }

  div.product-card-wrapper div.product-card div.link-arrow .material-symbols-rounded {
    font-size: 40px;
  }
}

.mega-menu div.product-card-wrapper {
  margin-bottom: 15px;
}

.mega-menu div.product-card-wrapper:last-child {
  margin-bottom: 0;
}

.mega-menu div.product-card-wrapper a.product-card-link:hover div.product-card {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.mega-menu div.product-card-wrapper div.product-card {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  min-height: inherit;
}

.default-theme .mega-menu div.product-card-wrapper div.product-card div.img {
  border-right: 1px solid #e0e0e0;
  border-right: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.mega-menu div.product-card-wrapper div.product-card div.img img {
  max-height: 40px;
  width: auto;
}

.mega-menu div.product-card-wrapper div.product-card div.content {
  padding-left: 10px;
  justify-content: center;
  min-height: 75px;
}

.mega-menu div.product-card-wrapper div.product-card div.content .desc * {
  font-weight: normal;
  margin: 0;
  line-height: 1em;
}

.default-theme .mega-menu div.product-card-wrapper div.product-card div.content .desc * {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.mobile-nav div.product-card-wrapper {
  margin: 10px 0;
}

.mobile-nav div.product-card-wrapper a.product-card-link:hover div.product-card {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.mobile-nav div.product-card-wrapper div.product-card {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
  min-height: inherit;
}

.default-theme .mobile-nav div.product-card-wrapper div.product-card div.img {
  border-right: 1px solid #e0e0e0;
  border-right: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.mobile-nav div.product-card-wrapper div.product-card div.img img {
  max-height: 30px;
  width: auto;
}

.mobile-nav div.product-card-wrapper div.product-card div.content {
  padding: 0 10px;
  min-height: 70px;
}

.mobile-nav div.product-card-wrapper div.product-card div.content .title {
  font-size: 14px;
  line-height: 16px;
}

.mobile-nav div.product-card-wrapper div.product-card div.content .desc {
  margin-top: 5px;
}

.mobile-nav div.product-card-wrapper div.product-card div.content .desc * {
  font-weight: normal;
  font-size: 12px;
  margin: 0;
  line-height: 1.1em;
}

.default-theme .mobile-nav div.product-card-wrapper div.product-card div.content .desc * {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.mobile-nav div.product-card-wrapper div.product-card div.link-arrow .material-symbols-rounded {
  font-size: 24px;
  line-height: 24px;
  font-variation-settings: 'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 30;
}

div.product-detail-wrapper {
  margin-bottom: 30px;
}

div.product-detail-wrapper div.product-detail {
  background-color: #ffffff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  transition: background-color, box-shadow 0.3s linear;
  padding: 20px;
  border-radius: 5px;
}

.default-theme div.product-detail-wrapper div.product-detail {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme div.product-detail-wrapper div.product-detail.highlight-border {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

.default-theme div.product-detail-wrapper div.product-detail.highlight-border {
  border-left: 6px solid #077AC0;
  border-left: 6px solid var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-detail-wrapper div.product-detail div.product-detail-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

div.product-detail-wrapper div.product-detail div.product-detail-header:hover .title {
  transition: color 0.3s linear;
}

.default-theme div.product-detail-wrapper div.product-detail div.product-detail-header:hover .title {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-detail-wrapper div.product-detail div.product-detail-header:hover .expand-btn-label {
  text-decoration: underline;
}

div.product-detail-wrapper div.product-detail div.product-detail-header .product-detail-header-content {
  display: flex;
}

div.product-detail-wrapper div.product-detail div.product-detail-header div.img {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

div.product-detail-wrapper div.product-detail div.product-detail-header div.img img {
  width: 32px;
  height: 32px;
}

div.product-detail-wrapper div.product-detail div.product-detail-header .title {
  line-height: 32px;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  transition: color 0.3s linear;
}

.default-theme div.product-detail-wrapper div.product-detail div.product-detail-header .title {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper {
  align-self: flex-end;
  line-height: 32px;
}

div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper .expand-btn-icons {
  border: 0;
  background: transparent;
  height: 32px;
  padding: 0;
  line-height: 32px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.default-theme div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper .expand-btn-icons {
  color: #077AC0;
  color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper .material-symbols-rounded {
  line-height: 32px;
  margin-left: 10px;
  font-variation-settings: 'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 32;
}

div.product-detail-wrapper div.product-detail .desc {
  align-self: flex-start;
  margin-top: 10px;
}

.default-theme div.product-detail-wrapper div.product-detail .desc {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

div.product-detail-wrapper div.product-detail .desc p:last-child {
  margin-bottom: 0;
}

div.product-detail-wrapper .product-detail.closed .component-area {
  display: none;
}

div.product-detail-wrapper .product-detail.closed .expand-icon-open {
  display: inline;
}

div.product-detail-wrapper .product-detail.closed .expand-icon-close {
  display: none;
}

div.product-detail-wrapper .product-detail.expanded .expand-icon-open {
  display: none;
}

div.product-detail-wrapper .product-detail.expanded .expand-icon-close {
  display: inline;
}

div.product-detail-wrapper .product-detail.expanded .component-area,
div.product-detail-wrapper .product-detail.edit .component-area {
  display: block;
}

div.product-detail-wrapper .component-area {
  border-radius: 5px;
  margin-top: 20px;
}

.default-theme div.product-detail-wrapper .component-area {
  border: 1px solid #e0e0e0;
  border: 1px solid var(--theme-default-theme-cb-border-default, #e0e0e0);
}

div.product-detail-wrapper .component-area>.text-block {
  padding: 20px;
}

div.product-detail-wrapper .component-area>.text-block .rich_text {
  margin: 0;
}

div.product-detail-wrapper .component-area>.text-block .rich_text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1279px) {
  div.product-detail-wrapper div.product-detail {
    padding: 15px 10px;
  }

  div.product-detail-wrapper div.product-detail div.product-detail-header {
    align-items: center;
  }

  div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper .expand-btn-label {
    display: none;
  }

  div.product-detail-wrapper div.product-detail div.product-detail-header .expand-btn-wrapper .material-symbols-rounded {
    margin-left: 5px;
  }

  div.product-detail-wrapper div.product-detail div.product-detail-header div.product-detail-header-content {
    align-items: center;
  }

  div.product-detail-wrapper div.product-detail div.product-detail-header div.product-detail-header-content .title {
    font-size: 16px;
    line-height: 1em;
    height: auto;
  }
}

.link-list-wrapper ul.link-list {
  margin-bottom: 30px;
}

.link-list-wrapper ul.link-list li.link-list-item {
  list-style-type: none;
  border-bottom: 1px solid;
  margin: 0 0;
}

.default-theme .link-list-wrapper ul.link-list li.link-list-item {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

.link-list-wrapper ul.link-list li.link-list-item>a {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 300;
  padding: 20px 5px;
  transition: all 0.3s;
}

.default-theme .link-list-wrapper ul.link-list li.link-list-item>a {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

.link-list-wrapper ul.link-list li.link-list-item>a:hover {
  transition: all 0.3s;
}

.default-theme .link-list-wrapper ul.link-list li.link-list-item>a:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

.default-theme .link-list-wrapper ul.link-list li.link-list-item>a:hover {
  background-color: #fbfbfb;
  background-color: var(--theme-default-theme-bg-quaternary, #fbfbfb);
}

.link-list-wrapper ul.link-list li.link-list-item>a span.link-list-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.default-theme .link-list-wrapper ul.link-list li.link-list-item>a span.link-list-subtitle {
  color: #4f4f4f;
  color: var(--theme-default-theme-text-secondary, #4f4f4f);
}

.modal-backdrop {
  display: none;
}

.modal {
  width: 50vw;
  height: 60vh;
  position: relative;
  top: 20vh;
  padding-bottom: 70px;
  margin: 0 auto;
  background: #ffffff;
}

.modal .modal-title {
  position: relative;
  z-index: 11;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 60px;
  font-size: 24px;
  font-weight: 100;
}

.default-theme .modal .modal-title {
  background-color: #e1f5ff;
  background-color: var(--theme-default-theme-footer-bg, #e1f5ff);
}

.modal .modal-content {
  height: calc(60vh - 130px);
  padding: 2rem;
  font-size: 18px;
  font-weight: 300;
  overflow-y: scroll;
}

.modal .modal-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding-top: 20px;
  text-align: center;
  background: white;
}

.modal .modal-footer .modal-close {
  margin-top: 10px;
  height: 50px;
  cursor: pointer;
}

.modal .modal-footer .modal-close:focus {
  outline: 2px solid #000;
}

.modal-open {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.modal-open .modal-backdrop.modal-is-open {
  display: block;
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .modal {
    width: 80vw;
    height: 60vh;
    top: 20vh;
  }
}

@media (max-width: 768px) {
  body .modal {
    width: 90vw;
    height: 70vh;
    top: 20vh;
  }

  body .modal .modal-content {
    height: calc(70vh - 130px);
  }
}

.additionalmenu .link-list-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.additionalmenu .link-list-wrapper ul {
  margin-bottom: 0px;
  padding: 0 1rem;
}

.additionalmenu .link-list-wrapper ul.link-list {
  display: flex;
  flex-direction: row;
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item {
  display: flex;
  position: relative;
  justify-content: center;
  border: 0px;
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item a {
  padding: 17px 54px 17px 16px;
  text-decoration: none;
  background: none;
  font-weight: normal;
  font-size: 1rem;
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item a:hover {
  text-decoration: underline;
  background: none !important;
}

.default-theme .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a:hover {
  color: #ffffff;
  color: var(--theme-default-theme-bg-primary, #ffffff);
}

.default-theme .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a.text-white {
  color: #FFFFFF;
  color: var(--theme-default-theme-cb-text-white, #FFFFFF);
}

.default-theme .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a.text-black {
  color: #000000;
  color: var(--theme-default-theme-cb-text-black, #000000);
}

.default-theme .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a.text-primary {
  color: #333333;
  color: var(--theme-default-theme-cb-text-primary, #333333);
}

.default-theme .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a.text-secondary {
  color: #4F4F4F;
  color: var(--theme-default-theme-cb-text-secondary, #4F4F4F);
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item.active {
  text-decoration: underline;
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item.active::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  z-index: 3;
  margin-right: 2rem;
  bottom: -6px;
}

.additionalmenu .link-list-wrapper ul.link-list li.link-list-item.active a {
  font-weight: bold;
}

@media (max-width: 767px) {
  .additionalmenu .link-list-wrapper ul.link-list {
    display: block;
  }

  .additionalmenu .link-list-wrapper ul.link-list li.link-list-item {
    display: block;
    width: 100%;
  }

  .additionalmenu .link-list-wrapper ul.link-list li.link-list-item a {
    padding: 15px 0;
  }
}

/* Hero Banner Component Styles */
.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto 64px;
  width: 100%;
}

.hero-banner h1,
.hero-banner p {
  margin: 0;
}

.hero-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner__overlay--gradient-left-right {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner__overlay--gradient-right-left {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner__overlay--full {
  background: rgba(0, 0, 0, 0.5);
}

.hero-banner__overlay--none {
  display: none;
}

.hero-banner__container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  width: 100%;
  padding: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 96px;
}

.hero-banner__content {
  max-width: 624px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}

.hero-banner__title {
  font-size: 64px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  color: inherit;
}

.hero-banner__description {
  font-size: 23px;
  line-height: 34px;
  font-weight: 400;
  color: inherit;
}

.hero-banner__cta-button {
  display: flex;
  height: 70px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #077AC0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-banner__cta-button:hover {
  background-color: #044b76;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 122, 192, 0.3);
  text-decoration: none;
  color: #ffffff;
}

.hero-banner__cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(7, 122, 192, 0.25);
}

.hero-banner .hero-banner__title,
.hero-banner .hero-banner__description {
  color: #ffffff !important;
}

.hero-banner--secondary .hero-banner__title,
.hero-banner--secondary .hero-banner__description {
  color: #333333 !important;
}

.hero-banner--loaded .hero-banner__background-image {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.hero-banner--error {
  background-color: #f2f2f2;
}

.hero-banner--error .hero-banner__background {
  display: none;
}

.hero-banner--mirrored .hero-banner__background-image,
.hero-banner--mirrored .hero-banner__image {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

.hero-banner--secondary {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-banner--secondary .hero-banner__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 48px;
}

.hero-banner--secondary .hero-banner__content {
  max-width: 540px;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  background: white;
  padding: 48px;
  align-items: flex-start;
  gap: 30px;
  /*
      box-shadow: 0 8px 32px rgba(map-get($colors, black), 0.1);
      */
}

.hero-banner--secondary .hero-banner__content .hero-banner__title {
  color: #333333;
  font-size: 46px;
  font-family: "Inter", sans-serif;
  line-height: 55px;
}

.hero-banner--secondary .hero-banner__content .hero-banner__description {
  color: #666666;
  font-size: 20px;
  line-height: 30px;
}

.hero-banner--tertiary {
  display: flex;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 600px;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 0;
}

.hero-banner--tertiary .hero-banner__content-section {
  width: 50%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background-color: #077AC0;
}

.hero-banner--tertiary .hero-banner__content-section .hero-banner__content-box {
  max-width: 720px;
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.hero-banner--tertiary .hero-banner__content-section .hero-banner__title {
  color: #ffffff;
  font-size: 46px;
  font-family: "Inter", sans-serif;
  line-height: 55px;
}

.hero-banner--tertiary .hero-banner__content-section .hero-banner__description {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
}

.hero-banner--tertiary .hero-banner__content-section .hero-banner__cta {
  margin-top: 1rem;
}

.hero-banner--tertiary .hero-banner__image-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner--tertiary .hero-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner--tertiary .hero-banner__cta-button {
  background-color: #ffffff !important;
  color: #077AC0 !important;
}

.hero-banner--tertiary .hero-banner__cta-button:hover {
  background-color: #f2f2f2 !important;
  color: #077AC0 !important;
}

@media screen and (max-width: 1439px) and (min-width: 768px) {
  .hero-banner {
    display: flex;
    height: 540px;
    min-width: 768px;
    max-width: 1920px;
    min-height: 540px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 64px auto;
    width: 100%;
  }

  .hero-banner__container {
    padding: 0 48px;
  }

  .hero-banner__content {
    max-width: 55%;
  }

  .hero-banner--secondary {
    display: flex;
    height: 768px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-banner--secondary .hero-banner__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 32px;
  }

  .hero-banner--secondary .hero-banner__content {
    max-width: 704px;
    padding: 32px;
    align-items: flex-start;
    flex: 1 0 0;
  }

  .hero-banner--secondary .hero-banner__content .hero-banner__title {
    color: #333333;
  }

  .hero-banner--secondary .hero-banner__content .hero-banner__description {
    color: #666666;
  }
}

@media screen and (min-width: 1079px) {
  .hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 700px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto 64px;
    width: 100%;
  }

  .hero-banner h1,
  .hero-banner p {
    margin: 0;
  }

  .hero-banner--tertiary {
    display: flex;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 600px;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
  }

  .hero-banner--tertiary .hero-banner__content-section {
    width: 50%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background-color: #077AC0;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__content-box {
    max-width: 720px;
    padding: 48px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__title {
    color: #ffffff;
    font-size: 46px;
    font-family: "Inter", sans-serif;
    line-height: 55px;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__description {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__cta {
    margin-top: 1rem;
  }

  .hero-banner--tertiary .hero-banner__image-section {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-banner--tertiary .hero-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-banner--tertiary .hero-banner__cta-button {
    background-color: #ffffff !important;
    color: #077AC0 !important;
  }

  .hero-banner--tertiary .hero-banner__cta-button:hover {
    background-color: #f2f2f2 !important;
    color: #077AC0 !important;
  }
}

@media screen and (max-width: 1079px) and (min-width: 768px) {
  .hero-banner {
    display: flex;
    height: 540px;
    min-width: 768px;
    max-width: 1920px;
    min-height: 540px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 64px auto;
    width: 100%;
  }

  .hero-banner__container {
    padding: 0 48px;
  }

  .hero-banner__content {
    max-width: 55%;
  }

  .hero-banner--tertiary {
    display: flex;
    min-height: 540px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }

  .hero-banner--tertiary .hero-banner__image-section {
    width: 100%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 1.5;
  }

  .hero-banner--tertiary .hero-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-banner--tertiary .hero-banner__content-section {
    width: 100%;
    height: auto;
    padding: 32px;
    background-color: #077AC0;
    order: 2;
    align-items: flex-start;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__content-box {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    box-shadow: none;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__title {
    font-size: 46px;
    font-family: "Inter", sans-serif;
    line-height: 55px;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__description {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hero-banner {
    display: flex;
    width: 100%;
    height: 730px;
    min-width: 320px;
    max-width: 767px;
    min-height: 540px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 32px auto;
  }

  .hero-banner__container {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
  }

  .hero-banner__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
    padding: 0 32px;
  }

  .hero-banner__title {
    text-align: center;
    font-size: 29px;
  }

  .hero-banner__description {
    text-align: center;
    font-size: 18px;
  }

  .hero-banner__cta {
    text-align: center;
  }

  .hero-banner__overlay--gradient-left-right,
  .hero-banner__overlay--gradient-right-left,
  .hero-banner__overlay--full {
    background: rgba(0, 0, 0, 0.5) !important;
  }

  .hero-banner__overlay--none {
    display: none;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    gap: 0;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__background {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__overlay {
    display: none !important;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    padding: 32px;
    justify-content: center;
    align-items: center;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__content {
    max-width: 100%;
    min-width: auto;
    background: transparent;
    padding: 0;
    text-align: center;
    align-items: center;
    box-shadow: none;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__title {
    color: #333333 !important;
    font-size: 29px;
    line-height: 35px;
    text-align: center;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__description {
    color: #666666 !important;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
  }

  .hero-banner:not(.hero-banner--secondary):not(.hero-banner--tertiary) .hero-banner__cta {
    text-align: center;
  }

  .hero-banner--secondary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    gap: 0;
  }

  .hero-banner--secondary .hero-banner__background {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .hero-banner--secondary .hero-banner__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    padding: 32px;
  }

  .hero-banner--secondary .hero-banner__content {
    max-width: 100%;
    min-width: auto;
    background: transparent;
    padding: 0;
    text-align: left;
    box-shadow: none;
  }

  .hero-banner--secondary .hero-banner__content .hero-banner__title {
    color: #333333;
    font-size: 29px;
    line-height: 35px;
    text-align: left;
  }

  .hero-banner--secondary .hero-banner__content .hero-banner__description {
    color: #666666;
    font-size: 18px;
    line-height: 27px;
    text-align: left;
  }

  .hero-banner--secondary .hero-banner__cta {
    text-align: left;
  }

  .hero-banner--tertiary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    min-height: 540px;
    gap: 0;
  }

  .hero-banner--tertiary .hero-banner__image-section {
    width: 100%;
    height: 320px;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-banner--tertiary .hero-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-banner--tertiary .hero-banner__content-section {
    width: 100%;
    height: auto;
    padding: 32px;
    background-color: #077AC0;
    order: 2;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__content-box {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    box-shadow: none;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__title {
    color: #ffffff;
    font-size: 29px;
    line-height: 35px;
    text-align: left;
  }

  .hero-banner--tertiary .hero-banner__content-section .hero-banner__description {
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    text-align: left;
  }

  .hero-banner--tertiary .hero-banner__cta {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .hero-banner__container {
    padding: 0;
  }

  .hero-banner__content {
    padding: 32px;
  }

  .hero-banner__cta-button {
    padding: 16px 30px;
    font-size: 22px;
  }
}

.text-block {
  margin-bottom: 20px;
}

.default-theme .text-block.bg-white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme .text-block.bg-light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme .text-block.bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme .text-block.bg-blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme .text-block .rich_text>* {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

.text-block.checklist-style h2,
.text-block.checklist-style h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

.default-theme .text-block.checklist-style h2,
.text-block.checklist-style h3 {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

.text-block.checklist-style h3 {
  font-weight: 500;
}

.text-block.checklist-style .rich_text ul li {
  display: block;
  padding: 15px 0 15px 24px;
  margin: 0;
  line-height: 1.2rem;
  border-bottom: 1px solid;
  background-image: url(1de2fa47802012e407a5.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px;
}

.default-theme .text-block.checklist-style .rich_text ul li {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

.default-theme .text-block.checklist-style .rich_text ul li {
  color: #828282;
  color: var(--theme-default-theme-fg-quinary, #828282);
}

.text-block.checklist-style .rich_text ul li:before {
  display: none;
}

.text-block.checklist-style .rich_text ul li:last-child {
  border: none;
}

.sidebar .rich_text {
  margin-top: 0;
}

.rich_text .img-left {
  float: left;
  margin: 0.5em 20px 0 0;
}

.rich_text .fltl {
  float: left;
}

.rich_text ul.fltl {
  width: 60%;
  min-width: 325px;
}

.rich_text hr.breaker {
  clear: both;
  height: 0;
  margin: 0;
  padding-top: 10px;
}

.rich_text p:last-child {
  margin-bottom: 0;
}

a.component-img-link {
  display: block;
  width: 100%;
}

a.component-img-link.align-center span {
  text-align: center;
}

a.component-img-link.align-left span {
  text-align: left;
}

a.component-img-link.align-right span {
  text-align: right;
}

a.hover-effect:hover img,
a.hover-effect:hover span {
  filter: brightness(75%);
}

img.component-img {
  max-width: 100%;
}

img.component-img.width-10 {
  width: 10%;
}

img.component-img.width-10.align-center {
  margin-left: 45%;
}

img.component-img.width-10.align-right {
  margin-left: 90%;
}

img.component-img.width-20 {
  width: 20%;
}

img.component-img.width-20.align-center {
  margin-left: 40%;
}

img.component-img.width-20.align-right {
  margin-left: 80%;
}

img.component-img.width-30 {
  width: 30%;
}

img.component-img.width-30.align-center {
  margin-left: 35%;
}

img.component-img.width-30.align-right {
  margin-left: 70%;
}

img.component-img.width-40 {
  width: 40%;
}

img.component-img.width-40.align-center {
  margin-left: 30%;
}

img.component-img.width-40.align-right {
  margin-left: 60%;
}

img.component-img.width-50 {
  width: 50%;
}

img.component-img.width-50.align-center {
  margin-left: 25%;
}

img.component-img.width-50.align-right {
  margin-left: 50%;
}

img.component-img.width-60 {
  width: 60%;
}

img.component-img.width-60.align-center {
  margin-left: 20%;
}

img.component-img.width-60.align-right {
  margin-left: 40%;
}

img.component-img.width-70 {
  width: 70%;
}

img.component-img.width-70.align-center {
  margin-left: 15%;
}

img.component-img.width-70.align-right {
  margin-left: 30%;
}

img.component-img.width-80 {
  width: 80%;
}

img.component-img.width-80.align-center {
  margin-left: 10%;
}

img.component-img.width-80.align-right {
  margin-left: 20%;
}

img.component-img.width-90 {
  width: 90%;
}

img.component-img.width-90.align-center {
  margin-left: 5%;
}

img.component-img.width-90.align-right {
  margin-left: 10%;
}

img.component-img.width-100 {
  width: 100%;
}

img.component-img.width-100.align-center {
  margin-left: 0%;
}

img.component-img.width-100.align-right {
  margin-left: 0%;
}

span.component-img-link-label {
  display: block;
  margin-top: 1rem;
}

.default-theme span.component-img-link-label {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

@media (max-width: 768px) {
  img.component-img {
    max-width: 100%;
  }

  img.component-img.mobile-width-25 {
    width: 25%;
    margin: 0 calc(75% / 2) !important;
  }

  img.component-img.mobile-width-50 {
    width: 50%;
    margin: 0 25% !important;
  }

  img.component-img.mobile-width-75 {
    width: 75%;
    margin: 0 12.5% !important;
  }

  img.component-img.mobile-width-100 {
    width: 100%;
    margin: 0 auto !important;
  }
}

div.icon-container {
  margin: .5rem 0;
}

div.icon-container,
div.icon-container a {
  display: flex;
}

div.icon-container.text-vertical,
div.icon-container.text-vertical a {
  flex-direction: column;
  align-items: center;
}

div.icon-container.text-vertical div.theIcon,
div.icon-container.text-vertical a div.theIcon {
  margin-bottom: 1rem;
}

div.icon-container.text-horizontal,
div.icon-container.text-horizontal a {
  flex-direction: row;
}

div.icon-container.circle div.theIcon {
  border-radius: 100%;
}

div.icon-container.circle div.theIcon svg.icon {
  width: 50%;
}

div.icon-container.animated div.theIcon {
  position: relative;
}

div.icon-container.animated div.theIcon::after {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0), 0 0 0 4px;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  top: 0;
  left: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  box-sizing: content-box;
}

div.icon-container div.theIcon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
}

div.icon-container div.rich_text {
  margin: 0 1rem;
}

div.form #mgnlhp {
  display: none;
}

div.form form .form-row label {
  font-weight: 300;
}

div.form form .form-row label dfn,
div.form form .form-row label em {
  color: red;
}

div.form form .form-row label span {
  display: inline-block;
  margin-bottom: 10px;
}

div.form form .form-row input {
  width: 100%;
  margin: 5px 0 15px;
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  padding: 0 10px;
  min-height: 40px;
}

.default-theme div.form form .form-row input {
  border-color: #bdbdbd;
  border-color: var(--theme-default-theme-grey-500, #bdbdbd);
}

div.form form .form-row input:focus,
div.form form .form-row input:focus-visible {
  background-color: none;
}

div.form form .form-row input::placeholder {
  font-size: 0.9rem;
}

.default-theme div.form form .form-row input::placeholder {
  color: var(--theme-default-theme-form-placeholder-color, );
}

div.form form .form-row input[type="checkbox"] {
  width: auto;
  height: auto;
  min-height: inherit;
  margin-right: 10px;
}

div.form form .form-row select {
  width: 100%;
  margin: 5px 0 15px;
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  padding: 0 10px;
  min-height: 40px;
}

.default-theme div.form form .form-row select {
  border-color: #bdbdbd;
  border-color: var(--theme-default-theme-grey-500, #bdbdbd);
}

div.form form .form-row select:focus,
div.form form .form-row select:focus-visible {
  background-color: none;
}

div.form form .form-row select::placeholder {
  font-size: 0.9rem;
}

.default-theme div.form form .form-row select::placeholder {
  color: var(--theme-default-theme-form-placeholder-color, );
}

div.form form .form-row fieldset select {
  width: 100%;
  margin: 5px 0 15px;
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  padding: 0 10px;
}

.default-theme div.form form .form-row fieldset select {
  border-color: #bdbdbd;
  border-color: var(--theme-default-theme-grey-500, #bdbdbd);
}

div.form form .form-row fieldset select:focus,
div.form form .form-row fieldset select:focus-visible {
  background-color: none;
}

div.form form .form-row fieldset select::placeholder {
  font-size: 0.9rem;
}

.default-theme div.form form .form-row fieldset select::placeholder {
  color: var(--theme-default-theme-form-placeholder-color, );
}

div.form form .form-row textarea {
  width: 100%;
  margin: 5px 0 15px;
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  padding: 0 10px;
}

.default-theme div.form form .form-row textarea {
  border-color: #bdbdbd;
  border-color: var(--theme-default-theme-grey-500, #bdbdbd);
}

div.form form .form-row textarea:focus,
div.form form .form-row textarea:focus-visible {
  background-color: none;
}

div.form form .form-row textarea::placeholder {
  font-size: 0.9rem;
}

.default-theme div.form form .form-row textarea::placeholder {
  color: var(--theme-default-theme-form-placeholder-color, );
}

div.form form .form-row input[type="radio"] {
  width: auto;
  min-height: 0.8rem;
}

div.form form .button-wrapper input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin: 20px 0;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.default-theme div.form form .button-wrapper input {
  background-color: #077ac0;
  background-color: var(--theme-default-theme-btn1, #077ac0);
}

.default-theme div.form form .button-wrapper input {
  color: #ffffff;
  color: var(--theme-default-theme-fg-terciary, #ffffff);
}

div.form form .button-wrapper input:hover {
  filter: brightness(110%);
  transition: 0.5s;
}

a.pdf-downloader {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.1rem;
}

.default-theme a.pdf-downloader {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

.default-theme a.pdf-downloader:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

a.pdf-downloader img {
  width: 1.3rem;
  padding-top: .2rem;
}

div.accordion-pdf div.accordion-button {
  padding: 0;
  background: none;
  border: none !important;
}

div.accordion-pdf div.accordion-button:hover,
div.accordion-pdf div.accordion-button.active {
  background: none !important;
}

div.accordion-pdf div.accordion-button svg {
  width: 1rem;
  margin-left: .5rem;
}

.default-theme div.accordion-pdf div.accordion-button svg use {
  fill: #fec64d;
  fill: var(--theme-default-theme-link-hover, #fec64d);
}

div.accordion-pdf div.accordion-button.active svg {
  transform: rotate(0deg);
}

div.accordion-pdf div.panel {
  background: none !important;
}

.sm-quote {
  min-height: 338px;
}

.default-theme .sm-quote {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-primary-contrast, #ffffff);
}

.sm-quote .quote-inner-wrap {
  padding: 60px;
  color: #3a424a;
}

.sm-quote .quote-inner-wrap .quote-profil {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}

.sm-quote .quote-inner-wrap .quote-profil img {
  width: 120px;
  margin-right: 10px;
}

.sm-quote .quote-inner-wrap .quote-content p {
  margin-bottom: 20px;
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 768px) {
  section.slider.slider-style-2 .slider-content {
    display: block;
  }

  section.slider.slider-style-2 .slider-content .sm-quote .quote-inner-wrap {
    padding: 20px;
  }

  section.slider.slider-style-2 .slider-content .sm-quote .quote-inner-wrap .quote-profil img {
    margin-right: 20px;
  }

  section.slider.slider-style-2 .slider-content a.slider-nav {
    display: none;
  }
}

@media (max-width: 599px) {
  .sm-quote .quote-inner-wrap {
    padding: 30px;
  }

  .sm-quote .quote-inner-wrap .quote-profil {
    padding-bottom: 16px;
  }

  .sm-quote .quote-inner-wrap .quote-profil img {
    width: 60px;
  }
}

hr {
  border: 0;
  margin: 1rem 0;
}

.rich_text strong,
.section-description strong {
  font-weight: bold;
}

.rich_text a.normal-link,
.section-description a.normal-link {
  letter-spacing: -0.333333px;
  font-size: 1rem;
  text-decoration: underline;
}

.default-theme .rich_text a.normal-link,
.section-description a.normal-link {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme .rich_text a.normal-link:hover,
.section-description a.normal-link:hover {
  color: #00588a;
  color: var(--theme-default-theme-primary-dark, #00588a);
}

.rich_text ul li,
.section-description ul li {
  display: table;
  vertical-align: top;
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.4em;
  align-items: center;
}

.rich_text ul li::before,
.section-description ul li::before {
  display: table-cell;
  vertical-align: top;
  width: 18px;
  padding-right: 10px;
  content: url(1de2fa47802012e407a5.svg);
}

.rich_text ul li:last-child,
.section-description ul li:last-child {
  margin-bottom: 0;
}

.rich_text ul.no-margin li,
.section-description ul.no-margin li {
  margin-left: 0;
}

.default-theme .rich_text span.primary-main,
.section-description span.primary-main {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.rich_text span.primary-main a,
.section-description span.primary-main a {
  text-decoration: underline;
}

.default-theme .rich_text span.primary-main a,
.section-description span.primary-main a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.rich_text span.primary-main a:hover,
.section-description span.primary-main a:hover {
  text-decoration: none;
}

.default-theme .rich_text span.primary-main a:hover,
.section-description span.primary-main a:hover {
  color: #f9a652;
  color: var(--theme-default-theme-secondary-main, #f9a652);
}

.default-theme .rich_text span.common-white,
.section-description span.common-white {
  color: #ffffff;
  color: var(--theme-default-theme-common-white, #ffffff);
}

.rich_text span.common-white a,
.section-description span.common-white a {
  text-decoration: underline;
}

.default-theme .rich_text span.common-white a,
.section-description span.common-white a {
  color: #ffffff;
  color: var(--theme-default-theme-common-white, #ffffff);
}

.rich_text span.common-white a:hover,
.section-description span.common-white a:hover {
  text-decoration: none;
}

.default-theme .rich_text span.common-white a:hover,
.section-description span.common-white a:hover {
  color: #ffffff;
  color: var(--theme-default-theme-common-white, #ffffff);
}

.rich-title .subs {
  font-size: 34px;
  line-height: 38px;
  margin-top: 30px;
}

.default-theme .rich-title .span-blue {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme .rich-title .span-orange {
  color: #f9a652;
  color: var(--theme-default-theme-secondary-main, #f9a652);
}

.default-theme .rich-title .span-blue-bc {
  color: #077ac0;
  color: var(--theme-default-theme-brand, #077ac0);
}

.rich-title h1.h1-line-height {
  line-height: 50px;
}

.default-theme .rich-title span.span-white {
  color: #ffffff;
  color: var(--theme-default-theme-common-white, #ffffff);
}

.rich-text-border {
  margin-left: 12%;
  padding-left: 1rem;
}

div.searchResults {
  margin-bottom: 2rem;
}

div.searchResults h3 {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.default-theme div.searchResults h3 {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchResults h3 strong {
  font-weight: bold;
}

div.searchResults div.list-group div.result {
  padding: 1rem 0;
}

.default-theme div.searchResults div.list-group div.result {
  border-top: 1px solid #e5e5e5;
  border-top: 1px solid var(--theme-default-theme-border, #e5e5e5);
}

div.searchResults div.list-group div.result a h4 {
  font-size: 1.5rem;
}

.default-theme div.searchResults div.list-group div.result a h4 {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

.default-theme div.searchResults div.list-group div.result a h4:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

div.searchResults div.list-group div.result div.excerpt {
  padding-left: 1rem;
}

.default-theme div.searchResults div.list-group div.result div.excerpt {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchResults div.list-group div.result div.excerpt strong {
  font-weight: bold;
}

.default-theme div.searchResults div.list-group div.result div.excerpt * {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchResults nav.search-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.default-theme div.searchResults nav.search-nav {
  border-top: solid 3px #077ac0;
  border-top: solid 3px var(--theme-default-theme-brand, #077ac0);
}

div.searchResults nav.search-nav a svg {
  width: 1.7rem;
}

.default-theme div.searchResults nav.search-nav a svg use {
  fill: #077ac0;
  fill: var(--theme-default-theme-btn1, #077ac0);
}

div.searchResults nav.search-nav a:hover svg use {
  transition: 0.3s;
}

.default-theme div.searchResults nav.search-nav a:hover svg use {
  fill: #fec64d;
  fill: var(--theme-default-theme-btn2, #fec64d);
}

div.searchResults nav.search-nav ul {
  display: flex;
  list-style: none;
}

div.searchResults nav.search-nav ul li {
  width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.default-theme div.searchResults nav.search-nav ul li {
  border-left: 1px solid #e5e5e5;
  border-left: 1px solid var(--theme-default-theme-border, #e5e5e5);
}

.default-theme div.searchResults nav.search-nav ul li {
  border-right: 1px solid #e5e5e5;
  border-right: 1px solid var(--theme-default-theme-border, #e5e5e5);
}

.default-theme div.searchResults nav.search-nav ul li {
  border-bottom: 1px solid #ffffff;
  border-bottom: 1px solid var(--theme-default-theme-bg-primary, #ffffff);
}

.default-theme div.searchResults nav.search-nav ul li {
  color: #828282;
  color: var(--theme-default-theme-pageNavIndex-fg, #828282);
}

.default-theme div.searchResults nav.search-nav ul li:hover {
  border-bottom: 1px solid #7fcbed;
  border-bottom: 1px solid var(--theme-default-theme-pageNavIndexBottomBorder, #7fcbed);
}

div.searchResults nav.search-nav ul li:last-child {
  border-right: none;
}

div.searchResults nav.search-nav ul li:first-child {
  border-left: none;
}

div.searchResults nav.search-nav ul li a {
  padding: 0.3rem 0;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

.default-theme div.searchResults nav.search-nav ul li a {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

.default-theme div.searchResults nav.search-nav ul li a:hover {
  color: #fec64d;
  color: var(--theme-default-theme-link-hover, #fec64d);
}

div.searchResults footer {
  background: none;
}

div.searchResults footer div.results-pagination {
  font-style: italic;
  font-size: 0.8rem;
  text-align: center;
}

div.searchResults footer div.results-pagination strong {
  font-weight: bold;
}

div.search-bar {
  padding: 1rem 0;
}

div.search-bar form {
  height: 2.8rem;
}

div.search-bar form input {
  height: 100%;
  transform: translateY(-1px);
  width: 250px;
  border-radius: 3px;
  font-size: 1.1rem;
}

.default-theme div.search-bar form input {
  border: 1px solid #e5e5e5;
  border: 1px solid var(--theme-default-theme-border, #e5e5e5);
}

div.search-bar form button {
  border: none;
  border-radius: 3px;
  height: 100%;
  font-size: 1.1rem;
  padding: 0 1rem;
  transition: 0.5s;
}

.default-theme div.search-bar form button {
  color: #ffffff;
  color: var(--theme-default-theme-fg-terciary, #ffffff);
}

.default-theme div.search-bar form button {
  background-color: #077ac0;
  background-color: var(--theme-default-theme-btn1, #077ac0);
}

.default-theme div.search-bar form button:hover {
  background-color: #fec64d;
  background-color: var(--theme-default-theme-btn2, #fec64d);
}

div.card {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem;
}

.default-theme div.card.bg-white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme div.card.bg-light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme div.card.bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme div.card.bg-blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

section.breadcrumb {
  padding: .15rem 0;
  max-width: 1200px;
  padding-left: 15px;
  margin: auto auto 1rem auto;
}

section.breadcrumb ul {
  display: flex;
  list-style: none;
}

.default-theme section.breadcrumb ul {
  border-bottom: 1px solid #e5e5e5;
  border-bottom: 1px solid var(--theme-default-theme-border, #e5e5e5);
}

section.breadcrumb ul li {
  margin-bottom: 0;
}

section.breadcrumb ul li::before {
  content: "/";
  padding: 0 .4rem;
  font-size: 0.8rem;
}

section.breadcrumb ul li:first-child::before {
  display: none;
}

section.breadcrumb ul li a {
  font-size: 0.8rem;
}

.default-theme section.breadcrumb ul li a {
  color: #333333;
  color: var(--theme-default-theme-fg-primary, #333333);
}

section.breadcrumb ul li a:hover {
  text-decoration: underline;
  transition: .5s;
}

.default-theme section.breadcrumb ul li a:hover {
  color: #077ac0;
  color: var(--theme-default-theme-btn1, #077ac0);
}

.column-container section.breadcrumb {
  max-width: auto;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.blog-article h1,
article.article-header h1 {
  font-size: 2rem;
  line-height: 1.3em;
}

.default-theme .blog-article h1,
article.article-header h1 {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

.blog-article h2,
article.article-header h2 {
  font-size: 1.65rem;
  line-height: 1.25em;
}

.blog-article p.article-date,
article.article-header p.article-date {
  font-size: 16px;
  margin-bottom: 0;
}

.default-theme .blog-article p.article-date,
article.article-header p.article-date {
  color: #4F4F4F;
  color: var(--theme-default-theme-cb-text-secondary, #4F4F4F);
}

div.searchCategory div.list-group div.result {
  display: flex;
  flex-direction: column;
}

.default-theme div.searchCategory div.list-group div.result:first-child {
  border-top: solid 0px #e5e5e5;
  border-top: solid 0px var(--theme-default-theme-border, #e5e5e5);
}

div.searchCategory div.list-group div.result .banner {
  position: relative;
  overflow: hidden;
  height: 25vh;
}

div.searchCategory div.list-group div.result .banner a img {
  width: 100%;
}

div.searchCategory div.list-group div.result .banner a h2 {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem;
  font-size: 2rem;
}

.default-theme div.searchCategory div.list-group div.result .banner a h2 {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

div.searchCategory div.list-group div.result .banner a:hover {
  transition: 0.5s;
}

.default-theme div.searchCategory div.list-group div.result .banner a:hover h2 {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

div.searchCategory div.list-group div.result h4 {
  font-size: 0.9rem;
}

.default-theme div.searchCategory div.list-group div.result h4 {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchCategory div.list-group div.result p {
  font-size: 1.1rem;
}

.default-theme div.searchCategory div.list-group div.result p {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchCategory div.list-group div.result p.item-date {
  font-size: 20px;
  margin-bottom: 0;
}

div.searchCategory div.list-group div.result a.btn {
  margin: 1rem 0;
  align-self: flex-end;
}

div.searchCategory.archive form {
  display: flex;
}

div.searchCategory.archive form input,
div.searchCategory.archive form select {
  display: inline-block;
  box-shadow: none;
  border-radius: 4px;
  box-sizing: border-box;
  max-height: 30px;
  border-bottom: 1rem;
}

.default-theme div.searchCategory.archive form input,
div.searchCategory.archive form select {
  border: solid 1px #e5e5e5;
  border: solid 1px var(--theme-default-theme-border, #e5e5e5);
}

.default-theme div.searchCategory.archive form input:focus,
div.searchCategory.archive form input:focus-visible,
div.searchCategory.archive form select:focus,
div.searchCategory.archive form select:focus-visible {
  outline: solid 1px #e5e5e5;
  outline: solid 1px var(--theme-default-theme-border, #e5e5e5);
}

div.searchCategory.archive form input::placeholder,
div.searchCategory.archive form select::placeholder {
  font-size: 0.9rem;
}

.default-theme div.searchCategory.archive form input::placeholder,
div.searchCategory.archive form select::placeholder {
  color: #e5e5e5;
  color: var(--theme-default-theme-border, #e5e5e5);
}

div.searchCategory.archive form div {
  margin: 0 0.5rem;
}

div.searchCategory.archive form div>* {
  height: 100%;
  transform: translateY(-1px);
}

div.searchCategory.archive form button {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
}

.default-theme div.searchCategory.archive form button {
  background-color: #077ac0;
  background-color: var(--theme-default-theme-btn1, #077ac0);
}

.default-theme div.searchCategory.archive form button {
  color: #ffffff;
  color: var(--theme-default-theme-fg-terciary, #ffffff);
}

.default-theme div.searchCategory.archive form button:hover {
  background-color: #fec64d;
  background-color: var(--theme-default-theme-btn2, #fec64d);
}

div.searchCategory.archive div.list-group div.result {
  display: flex;
  flex-direction: column;
}

.default-theme div.searchCategory.archive div.list-group div.result:first-child {
  border-top: solid 0px #e5e5e5;
  border-top: solid 0px var(--theme-default-theme-border, #e5e5e5);
}

div.searchCategory.archive div.list-group div.result .banner a h2 {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  padding: 0.5rem;
  font-size: 2rem;
}

.default-theme div.searchCategory.archive div.list-group div.result .banner a h2 {
  color: #333333;
  color: var(--theme-default-theme-fg-secondary, #333333);
}

div.searchCategory.archive div.list-group div.result .banner a:hover {
  transition: 0.5s;
}

.default-theme div.searchCategory.archive div.list-group div.result .banner a:hover h2 {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

div.searchCategory.archive div.list-group div.result h4 {
  font-size: 0.9rem;
}

.default-theme div.searchCategory.archive div.list-group div.result h4 {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchCategory.archive div.list-group div.result p {
  font-size: 1.1rem;
}

.default-theme div.searchCategory.archive div.list-group div.result p {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.searchCategory.archive div.list-group div.result a.btn {
  margin: 1rem 0;
  align-self: flex-end;
}

.a2a_default_style {
  display: flex;
  justify-content: flex-end;
}

div.cta-container {
  min-height: 54px;
}

div.cta-container.alignement-center,
div.cta-container.alignement-left,
div.cta-container.alignement-right {
  display: flex;
}

div.cta-container.alignement-center {
  justify-content: center;
}

div.cta-container.alignement-right {
  justify-content: flex-end;
}

div.cta-container a.btn,
div.cta-container input[type="submit"].btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
  min-height: 54px;
  padding: 10px 1.25rem;
  border-radius: 27px;
  text-align: center;
  font-size: 1rem;
  color: white;
  transition: all 0.2s linear;
  box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.default-theme div.cta-container a.btn,
div.cta-container input[type="submit"].btn {
  background-color: #077AC0;
  background-color: var(--theme-default-theme-cb-primary-main, #077AC0);
}

div.cta-container a.btn.style-2,
div.cta-container input[type="submit"].btn.style-2 {
  border: 2px solid;
  background-color: white;
}

.default-theme div.cta-container a.btn.style-2,
div.cta-container input[type="submit"].btn.style-2 {
  color: #005CAD;
  color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

.default-theme div.cta-container a.btn.style-2,
div.cta-container input[type="submit"].btn.style-2 {
  border-color: #005CAD;
  border-color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

div.cta-container a.btn.style-3,
div.cta-container input[type="submit"].btn.style-3 {
  background: none;
  padding: none;
  border-radius: none;
  box-shadow: none;
}

.default-theme div.cta-container a.btn.style-3,
div.cta-container input[type="submit"].btn.style-3 {
  color: #005CAD;
  color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

div.cta-container a.btn svg,
div.cta-container input[type="submit"].btn svg {
  margin-right: 0.5rem;
  width: 1.2rem;
  fill: white;
}

div.cta-container a.btn span,
div.cta-container input[type="submit"].btn span {
  transition: all 0.2s linear;
  transform: scale(1);
  display: flex;
}

div.cta-container a.btn span span.label,
div.cta-container input[type="submit"].btn span span.label {
  padding-right: 15px;
}

div.cta-container a.btn:hover,
div.cta-container input[type="submit"].btn:hover {
  transition: all 0.2s linear;
  box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.25);
}

.default-theme div.cta-container a.btn.style-1:hover,
div.cta-container input[type="submit"].btn.style-1:hover {
  background-color: #005CAD;
  background-color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

.default-theme div.cta-container a.btn.style-2:hover,
div.cta-container input[type="submit"].btn.style-2:hover {
  background-color: #D2ECFC;
  background-color: var(--theme-default-theme-cb-blue-pale, #D2ECFC);
}

div.cta-container a.btn.full-width,
div.cta-container input[type="submit"].btn.full-width {
  display: flex;
  justify-content: center;
  width: 100%;
}

div.cta-container input[type="submit"].btn {
  border: 0 solid black;
}

@media (max-width: 768px) {
  div.cta-container.mobile-centered {
    text-align: center;
  }
}

.hero div.cta-container a.btn.style-1 {
  background-color: white;
  border: 2px solid;
}

.default-theme .hero div.cta-container a.btn.style-1 {
  color: #005CAD;
  color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

.default-theme .hero div.cta-container a.btn.style-1 {
  border-color: #005CAD;
  border-color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

.hero div.cta-container a.btn.style-1:hover {
  background-color: white;
}

.default-theme .hero div.cta-container a.btn.style-1:hover {
  color: #005CAD;
  color: var(--theme-default-theme-cb-primary-hover, #005CAD);
}

.default-theme .hero div.cta-container a.btn.style-1:hover {
  background-color: #D2ECFC;
  background-color: var(--theme-default-theme-cb-blue-pale, #D2ECFC);
}

div.embed-video {
  width: 100%;
  position: relative;
}

div.embed-video:before {
  padding-top: 56.25%;
  content: "";
  display: block;
}

div.embed-video iframe {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

aside.menu-sidebar ul {
  list-style: none;
}

aside.menu-sidebar ul li {
  padding-left: 1rem;
  background: no-repeat 0 6px;
  transition: all 0.2s ease-out 0s;
}

aside.menu-sidebar ul li.active,
aside.menu-sidebar ul li:hover {
  background-position: 100% 6px;
}

.default-theme aside.menu-sidebar ul li.active>a,
aside.menu-sidebar ul li:hover>a {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

aside.menu-sidebar ul li a {
  font-size: 13px;
}

.default-theme aside.menu-sidebar ul li a {
  color: #333333;
  color: var(--theme-default-theme-text-primary, #333333);
}

section.infos-destinations div.list-destinations ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

section.infos-destinations div.list-destinations ul li {
  width: 30%;
  display: flex;
  padding: 1rem 0;
}

section.infos-destinations div.list-destinations ul li.hide {
  display: none;
}

section.infos-destinations div.list-destinations ul li a {
  min-width: 100%;
  display: flex;
  background-position: center;
  background-size: cover;
}

.default-theme section.infos-destinations div.list-destinations ul li a:hover span {
  color: #077ac0;
  color: var(--theme-default-theme-link-idle, #077ac0);
}

section.infos-destinations div.list-destinations ul li a span {
  margin-top: 5rem;
  padding-left: 1rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.default-theme section.infos-destinations div.list-destinations ul li a span {
  color: #666666;
  color: var(--theme-default-theme-fg-quaternary, #666666);
}

div.small-card-container {
  display: flex;
}

body.cssForEditor div.small-card-container {
  display: block;
}

div.small-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
}

.default-theme div.small-card {
  color: #333333;
  color: var(--theme-default-theme-common-black, #333333);
}

.default-theme div.small-card.bg-white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme div.small-card.bg-light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme div.small-card.bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme div.small-card.bg-blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

div.small-card div.image-container {
  text-align: center;
}

div.small-card div.image-container img {
  max-width: 100%;
  width: 100%;
}

div.small-card div.image-container img.width-10 {
  width: 10%;
}

div.small-card div.image-container img.width-20 {
  width: 20%;
}

div.small-card div.image-container img.width-30 {
  width: 30%;
}

div.small-card div.image-container img.width-40 {
  width: 40%;
}

div.small-card div.image-container img.width-50 {
  width: 50%;
}

div.small-card div.image-container img.width-60 {
  width: 60%;
}

div.small-card div.image-container img.width-70 {
  width: 70%;
}

div.small-card div.image-container img.width-80 {
  width: 80%;
}

div.small-card div.image-container img.width-90 {
  width: 90%;
}

div.small-card div.image-container img.width-100 {
  width: 100%;
}

div.small-card div.image-container img.img-margin {
  margin-top: 20px;
}

div.small-card div.small-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 20px 20px;
}

div.small-card div.small-card-content.centered-content,
div.small-card div.small-card-content.centered-content div.small-card-link {
  text-align: center;
}

div.small-card div.small-card-text {
  display: flex;
  align-items: center;
  flex-direction: column;
}

div.small-card div.small-card-link {
  align-items: flex-end;
  padding: 20px 0 0 0;
  width: 100%;
}

div.small-card h4 {
  font-size: 1.25rem;
  letter-spacing: -0.2px;
  line-height: 24px;
  min-height: 50px;
}

div.small-card p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 19px;
}

div.small-card a {
  font-size: 14px;
  text-decoration: underline;
}

.default-theme div.small-card a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme div.small-card a:hover {
  color: #00588a;
  color: var(--theme-default-theme-primary-dark, #00588a);
}

@media (min-width: 769px) and (max-width: 1023px) {
  div.small-card a {
    position: static;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  div.small-card {
    height: auto;
    margin: 0 auto;
  }

  div.small-card div.image-container img {
    width: 100%;
    height: auto;
  }

  div.small-card a {
    position: static;
    margin-bottom: 10px;
  }
}

aside.subscribe {
  display: flex;
  justify-content: space-around;
}

aside.subscribe div.info {
  display: flex;
  flex-direction: column;
  max-width: 50%;
}

aside.subscribe div.info .text-subscribe {
  margin-bottom: 26px;
}

aside.subscribe div.info .text-subscribe p {
  font-size: 17px;
  line-height: 27.2px;
}

aside.subscribe div.info .text-subscribe-policy {
  font-size: 14px;
  text-align: center;
  margin-top: 26px;
}

aside.subscribe div.info .text-subscribe-policy a {
  text-decoration: underline;
}

.default-theme aside.subscribe div.info .text-subscribe-policy a {
  color: #005cad;
  color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme aside.subscribe div.info .text-subscribe-policy a:hover {
  color: #f9a652;
  color: var(--theme-default-theme-secondary-main, #f9a652);
}

aside.subscribe div.info form {
  text-align: center;
}

aside.subscribe div.info form input[type="email"] {
  width: 260px;
  padding: 12px 10px;
  font-size: 14px;
  margin: 0 20px 0 0;
  border-radius: 4px;
}

.default-theme aside.subscribe div.info form input[type="email"] {
  border: solid 2px #bdbdbd;
  border: solid 2px var(--theme-default-theme-grey-500, #bdbdbd);
}

aside.subscribe div.info form input[type="submit"] {
  margin: 0;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-size: 1rem;
  height: auto;
  display: inline-flex;
  align-items: center;
  border: 0px solid black;
  cursor: pointer;
}

.default-theme aside.subscribe div.info form input[type="submit"] {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme aside.subscribe div.info form input[type="submit"] {
  color: #ffffff;
  color: var(--theme-default-theme-primary-contrast, #ffffff);
}

.default-theme aside.subscribe div.info form input[type="submit"]:hover {
  background-color: #00588a;
  background-color: var(--theme-default-theme-primary-dark, #00588a);
}

.default-theme aside.subscribe div.info form input[type="submit"]:hover {
  color: #ffffff;
  color: var(--theme-default-theme-primary-contrast, #ffffff);
}

aside.subscribe div.info form input[type="submit"] svg {
  margin-right: 0.5rem;
  width: 1.2rem;
}

aside.subscribe div.info form input[type="submit"].full-width {
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) and (max-width: 940px) {
  aside.subscribe div.info form input[type="email"] {
    width: 50%;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  aside.subscribe {
    display: block;
    clear: both;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  aside.subscribe .rich-title {
    margin-bottom: 30px;
  }

  aside.subscribe .rich-title h3 {
    margin: 0;
  }

  aside.subscribe div.info {
    max-width: inherit;
    width: 100%;
  }

  aside.subscribe div.info form input[type="email"] {
    margin: 0 0 20px 0;
  }
}

.destination-page {
  display: flex;
  flex-direction: column;
}

.destination-page>img {
  margin-bottom: 1.5rem;
}

.destination-page div.title-flag-section {
  display: flex;
  align-items: center;
}

.destination-page div.title-flag-section h2 {
  margin: 0 1rem;
}

.destination-page div.comp-canada-ctrl {
  display: flex;
  justify-content: flex-end;
}

.default-theme .destination-page div.comp-canada-ctrl {
  border-bottom: 2px solid #005cad;
  border-bottom: 2px solid var(--theme-default-theme-primary-main, #005cad);
}

.destination-page div.comp-canada-ctrl a {
  display: flex;
  align-items: center;
  margin: 0.1rem;
  border-radius: 3px;
}

.default-theme .destination-page div.comp-canada-ctrl a {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

.default-theme .destination-page div.comp-canada-ctrl a:hover {
  background-color: #00588a;
  background-color: var(--theme-default-theme-primary-dark, #00588a);
}

.destination-page div.comp-canada-ctrl a.hide .open {
  display: none;
}

.destination-page div.comp-canada-ctrl a.show .close {
  display: none;
}

.destination-page div.comp-canada-ctrl a svg,
.destination-page div.comp-canada-ctrl a img {
  width: 18px;
  margin: 0.3rem;
}

.default-theme .destination-page div.comp-canada-ctrl a svg use {
  fill: #ffffff;
  fill: var(--theme-default-theme-primary-contrast, #ffffff);
}

.destination-page table.desti-datas {
  width: 100%;
}

.destination-page table.desti-datas span {
  opacity: 0;
  transition: 1s;
}

.destination-page table.desti-datas.show-ref span {
  opacity: 1;
}

.destination-page table.desti-datas thead tr th {
  text-align: start;
}

.destination-page table.desti-datas thead tr td img {
  width: 18px;
}

.destination-page table.desti-datas tr {
  height: 3rem;
}

.destination-page table.desti-datas tr td,
.destination-page table.desti-datas tr th {
  vertical-align: middle;
}

.default-theme .destination-page table.desti-datas th,
.destination-page table.desti-datas td {
  color: #333333;
  color: var(--theme-default-theme-common-black, #333333);
}

.destination-page>a {
  align-self: center;
}

div.social-media {
  display: flex;
  align-items: baseline;
}

div.social-media img {
  width: 18px;
  margin-right: 1rem;
}

div.social-media.align-left {
  justify-content: flex-start;
}

div.social-media.align-center {
  justify-content: center;
}

div.social-media.align-right {
  justify-content: flex-end;
}

div.banner-radius {
  display: flex;
  padding: 20px 70px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
}

.default-theme div.banner-radius.bg-white {
  background-color: #ffffff;
  background-color: var(--theme-default-theme-background-paper, #ffffff);
}

.default-theme div.banner-radius.bg-light-blue {
  background-color: #e3f7ff;
  background-color: var(--theme-default-theme-background-secondary, #e3f7ff);
}

.default-theme div.banner-radius.bg-light-gray {
  background-color: #f6f6f6;
  background-color: var(--theme-default-theme-background-default, #f6f6f6);
}

.default-theme div.banner-radius.bg-blue {
  background-color: #005cad;
  background-color: var(--theme-default-theme-primary-main, #005cad);
}

div.banner-radius img {
  margin-right: 1rem;
  height: 70px;
}

div.banner-radius .rich_text p {
  font-size: 18px;
  margin-bottom: 0;
}

div.banner-radius .rich_text a {
  font-size: 18px;
  text-decoration: underline;
}

.default-theme div.banner-radius .rich_text a {
  color: #333333;
  color: var(--theme-default-theme-common-black, #333333);
}

div.banner-radius .rich_text a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  div.banner-radius {
    padding: 20px 30px;
  }
}

table {
  font-weight: thin;
}

table strong {
  font-weight: bold;
}

table caption {
  text-align: left;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  margin: 0;
}

.default-theme table caption {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

table tr {
  border-bottom: 1px solid;
}

.default-theme table tr {
  border-color: #e5e5e5;
  border-color: var(--theme-default-theme-border, #e5e5e5);
}

table tr td,
table tr th {
  vertical-align: top;
  padding: 10px;
}

table tbody tr:last-child {
  border: none;
}

div.alertes {
  margin: 2rem 0px;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  border-radius: 4px;
}

div.alertes svg {
  width: 2rem;
  min-width: 2rem;
  flex-grow: 0;
}

div.alertes aside {
  flex-grow: 1;
  margin-left: 1rem;
}

div.alertes aside>* {
  margin-bottom: .5rem;
}

div.alertes aside>*:last-child {
  margin-bottom: 0;
}

div.alertes aside h5 {
  font-weight: 700;
}

div.alertes aside a {
  font-weight: 600;
  text-decoration: underline;
}

.default-theme div.alertes.type-info {
  background-color: #dff8fa;
  background-color: var(--theme-default-theme-info-light, #dff8fa);
}

.default-theme div.alertes.type-info svg use {
  fill: #147379;
  fill: var(--theme-default-theme-info-dark, #147379);
}

.default-theme div.alertes.type-info aside h5,
div.alertes.type-info aside p,
div.alertes.type-info aside a {
  color: #147379;
  color: var(--theme-default-theme-info-dark, #147379);
}

.default-theme div.alertes.type-info aside a:hover {
  color: #00acb8;
  color: var(--theme-default-theme-info-main, #00acb8);
}

.default-theme div.alertes.type-success {
  background-color: #dcf6e7;
  background-color: var(--theme-default-theme-success-light, #dcf6e7);
}

.default-theme div.alertes.type-success svg use {
  fill: #005826;
  fill: var(--theme-default-theme-success-dark, #005826);
}

.default-theme div.alertes.type-success aside h5,
div.alertes.type-success aside p,
div.alertes.type-success aside a {
  color: #005826;
  color: var(--theme-default-theme-success-dark, #005826);
}

.default-theme div.alertes.type-success aside a:hover {
  color: #219653;
  color: var(--theme-default-theme-success-main, #219653);
}

.default-theme div.alertes.type-error {
  background-color: #fdeeee;
  background-color: var(--theme-default-theme-error-light, #fdeeee);
}

.default-theme div.alertes.type-error svg use {
  fill: #8e0900;
  fill: var(--theme-default-theme-error-dark, #8e0900);
}

.default-theme div.alertes.type-error aside h5,
div.alertes.type-error aside p,
div.alertes.type-error aside a {
  color: #8e0900;
  color: var(--theme-default-theme-error-dark, #8e0900);
}

.default-theme div.alertes.type-error aside a:hover {
  color: #e02020;
  color: var(--theme-default-theme-error-main, #e02020);
}

.default-theme div.alertes.type-warning {
  background-color: #fff4d3;
  background-color: var(--theme-default-theme-warning-light, #fff4d3);
}

.default-theme div.alertes.type-warning svg use {
  fill: #866605;
  fill: var(--theme-default-theme-warning-dark, #866605);
}

.default-theme div.alertes.type-warning aside h5,
div.alertes.type-warning aside p,
div.alertes.type-warning aside a {
  color: #866605;
  color: var(--theme-default-theme-warning-dark, #866605);
}

.default-theme div.alertes.type-warning aside a:hover {
  color: #f2c94c;
  color: var(--theme-default-theme-warning-main, #f2c94c);
}

/* TODO - Move hotfixes to their component file */
/* HOTFIX */
header a,
header button {
  font-family: 'Inter', Arial, sans-serif !important;
}

/* HEADER SECONDARY MENU */
.default-theme div.main-header .secondary-menu-wrapper {
  border: 0;
  background-color: #F7F6F6;
}

.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher a,
.default-theme div.main-header .secondary-menu-wrapper div.second-menu ul li.language-switcher span.material-symbols-rounded {
  color: #003070;
}

div.main-header .secondary-menu-wrapper div.second-menu ul li,
div.main-header .secondary-menu-wrapper div.second-menu ul li a {
  line-height: 36px;
  height: 36px;
}

/* HEADER MAIN MENU */
.default-theme div.main-header div.header-container nav#navigation>ul>li.active {
  border: 0;
  background-color: #F7F6F6;
}

/* MEGA MENU */
div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col.featured,
.default-theme div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col.featured {
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
}

.mega-menu div.product-card-wrapper a.product-card-link div.product-card {
  padding: 10px;
}

.mega-menu div.product-card-wrapper a.product-card-link div.product-card,
.mega-menu div.product-card-wrapper a.product-card-link:hover div.product-card {
  box-shadow: none;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col {
  padding: 15px 30px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col .menu-col-title span {
  line-height: inherit;
  padding-bottom: 5px;
}

div.main-header div.header-container nav#navigation>ul>li div.mega-menu .header-container .menu-col ul li.second-level-component {
  margin-bottom: 15px;
}

div.product-card-wrapper div.product-card.small div.img {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.default-theme .mega-menu div.product-card-wrapper div.product-card div.img {
  border: 0;
}

.default-theme div.product-card-wrapper div.product-card.with-bg-color div.img {
  background-color: transparent;
}

.mega-menu div.product-card-wrapper div.product-card div.img img {
  max-width: inherit;
  max-height: inherit;
}

div.product-card-wrapper div.product-card.small div.content {
  padding: 0 10px;
  min-height: inherit;
}

.default-theme div.product-card-wrapper div.product-card div.content .title {
  color: #077AC0;
}

/* HEADER CTAs */
/*_menu-mobile.scss:34*/
.default-theme .cta-menu button {
  background-color: #077AC0;
  border: 2px solid #077AC0;
  color: #FFFFFF;
}

.default-theme .cta-menu2 button {
  background-color: white;
  border: 2px solid #003070;
  color: #003070;
}

.default-theme .cta-menu .cta-menu-shadow {
  border-radius: 8px !important;
  background-color: transparent !important;
}

.cta-menu button,
.cta-menu2 button {
  font-size: 18px;
  border-radius: 8px !important;
  line-height: 46px;
}

.cta-menu button .arrow-down,
.cta-menu button .arrow-up,
.cta-menu2 button .arrow-down,
.cta-menu2 button .arrow-up {
  display: none !important;
}

.cta-menu2 .cta-menu2-dropdown {
  transition: all 0.1s linear !important;
}

.cta-menu .cta-menu-dropdown.open,
.cta-menu2 .cta-menu2-dropdown.open {
  height: auto !important;
  margin-top: 5px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #077AC0 !important;
  transition: all 0.1s linear !important;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
}

.cta-menu2 .cta-menu2-dropdown.open {
  border: 2px solid #003070 !important;
}

.cta-menu2 .cta-menu2-dropdown.open a {
  color: #003070;
}

.cta-menu .cta-menu-dropdown li,
.cta-menu2 .cta-menu2-dropdown li {
  line-height: 44px !important;
}

.cta-menu .cta-menu-dropdown a,
.cta-menu2 .cta-menu2-dropdown a {
  font-size: 16px;
  line-height: 44px;
  font-weight: bold;
}

.mobile-nav .cta-menu2 {
  height: inherit;
  padding: 0 20px;
}

.mobile-nav .cta-menu2 .cta-menu2-btn {
  width: 100%;
}

.mobile-nav .second-menu {
  margin-top: 30px;
}

.mobile-nav .cta-menu .cta-menu-dropdown a,
.mobile-nav .cta-menu2 .cta-menu2-dropdown a {
  font-size: 18px;
}

.mobile-panel #mobile-navigation>ul>li div.sub-menu-content .menu-col-title span {
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 3px solid #077AC0;
}

.mobile-panel #mobile-navigation>ul>li li.second-level-item {
  padding-left: 0;
}

/* CONTENT CTA */
div.cta-container a.btn,
div.cta-container input[type="submit"].btn {
  border-radius: 12px;
  height: 72px;
  font-size: 20px;
}