@charset "UTF-8";
/* @mixin button($background, $font) {
  position: relative;
  display: flex;
  place-content: center center;
  align-items: center;
  align-self: center;
  width: fit-content;
  padding: 10px 24px;
  border: 1px solid $background;
  border-radius: 100px;
  background-color: $background;
  color: $font !important;
  text-decoration: none;

  &::before {
    content: '\e90d';
    z-index: 2;
    display: inline-block;
    margin-right: 20px;
    color: $font;

    @include icomoon(16px);

  }
  &::after {
    content: '\e90e';
    z-index: 2;
    display: inline-block;
    margin-left: 20px;
    color: $font;

    @include icomoon(16px);
  }

  &:hover {
    border: 2px solid $primary-color;
    font-weight: bold;
    //transition: 0.25s ease-in-out;
  }

  &:disabled {
    border: 1px solid $primary-gray;
    background-color: $primary-gray;
    color: $primary-gray;

  }
} */
@font-face {
  font-family: "icomoon";
  font-weight: 400;
  font-style: normal;
  src: url("../assets/fonts/icomoon/icomoon.tff") format("tff"), url("../assets/fonts/icomoon/icomoon.eot?") format("eot"), url("../assets/fonts/icomoon/icomoon.woff") format("woff");
  font-display: swap;
}
/*
    - Name: "_variables-css.scss"
    - Description: "Add custom styles css"
*/
:root {
  --primary-color: #3E6FB6;
  --secondary-color: #D43D44;
  --primary-light: #F2F7FF;
  --secondary-light: #FFF3F0;
  --gradient-01: linear-gradient(135deg, #3E6FB6 0%, #D43D44 100%);
  --gradient-02: linear-gradient(135deg, #3E6FB6 0%, #22BB9F 100%);
  --gradient-light-01: linear-gradient(180deg, #F2F7FF 0%, #FFF3F0 100%);
  --gradient-light-02: linear-gradient(135deg, #F2F7FF 0%, #DEFFF9 100%);
  --light-grey: #F0ECF6;
  --grey: #8F9199;
  --white: #FFF;
  --black: #20234A;
  --text-black: #38384C;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --font-64: 64px;
  --font-40: 40px;
  --font-36: 36px;
  --font-32: 32px;
  --font-30: 30px;
  --font-28: 28px;
  --font-26: 26px;
  --font-24: 24px;
  --font-22: 22px;
  --font-20: 20px;
  --font-18: 18px;
  --font-15: 15px;
  --font-13: 13px;
  --icon-play: "";
  --icon-calendar: "";
  --icon-arrow-left: "";
  --icon-arrow-right: "";
  --icon-arrow-top: "";
  --spacing-1: 8px;
  --spacing-2: 12px;
  --spacing-3: 16px;
  --spacing-4: 24px;
  --spacing-5: 32px;
  --spacing-6: 40px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  min-height: 100dvh;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
.row {
  margin: 0;
}

.row > * {
  margin: 0;
  padding: 0;
}

/*
    - Name: "_generic.scss"
    - Description: "Add custom styles generic"
*/
/* @mixin button($background, $font) {
  position: relative;
  display: flex;
  place-content: center center;
  align-items: center;
  align-self: center;
  width: fit-content;
  padding: 10px 24px;
  border: 1px solid $background;
  border-radius: 100px;
  background-color: $background;
  color: $font !important;
  text-decoration: none;

  &::before {
    content: '\e90d';
    z-index: 2;
    display: inline-block;
    margin-right: 20px;
    color: $font;

    @include icomoon(16px);

  }
  &::after {
    content: '\e90e';
    z-index: 2;
    display: inline-block;
    margin-left: 20px;
    color: $font;

    @include icomoon(16px);
  }

  &:hover {
    border: 2px solid $primary-color;
    font-weight: bold;
    //transition: 0.25s ease-in-out;
  }

  &:disabled {
    border: 1px solid $primary-gray;
    background-color: $primary-gray;
    color: $primary-gray;

  }
} */
body h1,
body h2,
body h3,
body h4,
body p {
  color: var(--black);
}
body h1 {
  font-size: var(--font-30);
  line-height: 2.375rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body h1 {
    font-size: var(--font-40);
    line-height: 3rem;
  }
}
body h2 {
  font-size: var(--font-26);
  line-height: 1.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body h2 {
    font-size: var(--font-30);
    line-height: 2.25rem;
  }
}
body h3 {
  font-size: var(--font-22);
  line-height: 1.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body h3 {
    line-height: 1.75rem;
  }
}
body h4 {
  font-size: var(--font-18);
  line-height: 1.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body h4 {
    line-height: 1.5rem;
  }
}
body a {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body p:last-child {
  margin-bottom: 0;
}
body p.body-large {
  font-size: var(--font-18);
  line-height: 1.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body p.body-large {
    font-size: var(--font-20);
    line-height: 1.875rem;
  }
}
body p.body-large strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body p,
body p.body-medium {
  font-size: var(--font-15);
  line-height: 1.4375rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
}
body p strong,
body p.body-medium strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body p.body-small {
  font-size: var(--font-13);
  line-height: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
}
body p.body-small strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body ul li,
body ol li {
  color: var(--black);
  font-size: var(--font-15);
  line-height: 1.4375rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
}
body ul li strong,
body ol li strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body ul li::marker,
body ol li::marker {
  color: var(--primary-color);
  font-size: var(--font-18);
}
body ol li {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body blockquote {
  position: relative;
  margin: 1.5rem 0;
  padding: 1.5rem 2rem;
}
body blockquote p,
body blockquote p.body-large,
body blockquote p.body-medium,
body blockquote p.body-small {
  margin-bottom: 0;
  color: var(--primary-color);
  font-style: italic;
  font-size: var(--font-15);
  line-height: 1.4375rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
body blockquote::before, body blockquote::after {
  position: absolute;
  color: var(--primary-color);
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body blockquote::before {
  content: "\e91b";
  top: 5px;
  left: 0;
}
body blockquote::after {
  content: "\e91c";
  right: 0;
  bottom: -10px;
}

.toolbar .toolbar-bar #toolbar-item-administration-tray .toolbar-icon-admin-toolbar-tools-help.toolbar-icon-default::before {
  -webkit-mask-image: url("../assets/images/icons/home.svg");
          mask-image: url("../assets/images/icons/home.svg");
}

#klaro .custom-styles a {
  color: var(--primary-color);
}
#klaro .custom-styles .cm-modal.cm-klaro {
  max-width: 720px;
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-list-input.required:checked + .cm-list-label .slider,
#klaro .custom-styles .cm-modal.cm-klaro .cm-list-input.half-checked:checked + .cm-list-label .slider,
#klaro .custom-styles .cm-modal.cm-klaro .cm-list-input:checked + .cm-list-label .slider {
  background-color: var(--primary-color);
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-decoration: none;
  transition: text-shadow 0.1s ease;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  min-width: 220px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none !important;
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button::after {
  content: "\e90e";
  z-index: 2;
  margin-left: 10px;
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button::after {
  color: var(--white);
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button:hover, #klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button:focus {
  text-shadow: 0 0 1px currentcolor;
}
#klaro .custom-styles .cm-modal.cm-klaro .cm-footer-buttons button:hover {
  border: 1px solid var(--primary-color) !important;
}
#klaro .custom-styles .cookie-notice {
  max-width: 800px !important;
}
#klaro .custom-styles .cookie-notice .cn-ok button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-decoration: none;
  transition: text-shadow 0.1s ease;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  min-width: 220px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none !important;
}
#klaro .custom-styles .cookie-notice .cn-ok button::after {
  content: "\e90e";
  z-index: 2;
  margin-left: 10px;
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#klaro .custom-styles .cookie-notice .cn-ok button::after {
  color: var(--white);
}
#klaro .custom-styles .cookie-notice .cn-ok button:hover, #klaro .custom-styles .cookie-notice .cn-ok button:focus {
  text-shadow: 0 0 1px currentcolor;
}
#klaro .custom-styles .cookie-notice .cn-ok button:hover {
  border: 1px solid var(--primary-color) !important;
}
#klaro .custom-styles .cookie-notice .cn-buttons {
  display: flex;
}
#klaro .custom-styles .cookie-notice:focus, #klaro .custom-styles .cookie-notice:focus-visible {
  outline: 0;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}

/*
    - Name: "back-to-top.scss"
    - Description: "Add custom styles to View Partners"
*/
.back-to-top {
  all: unset;
  position: fixed !important;
  right: 10px;
  bottom: 40vh;
  z-index: 9 !important;
  font-size: 0;
  opacity: 0;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) !important;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
}
.back-to-top::before {
  content: var(--icon-arrow-top);
  display: flex;
  flex: 0 1 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: var(--spacing-1);
  background-color: var(--white);
  transition: 0.25s ease-in-out;
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.back-to-top:hover {
  transform: translateY(-5px);
}
.back-to-top:hover::before {
  background-color: var(--primary-color);
  color: var(--white);
}
.back-to-top.stuck {
  opacity: 1;
}