@charset "UTF-8";
/*
<link href="https://fonts.googleapis.com/css2?
family=Barlow+Condensed:wght@600;700;800&
family=Exo+2:wght@500;600;700&
family=Inter:wght@400;500;600&
display=swap&subset=latin-ext" rel="stylesheet">
*/
/* Smaller, more compact clamp sizes */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.8rem, 1.8vw + 1.2rem, 2.6rem);
}

h2 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.1rem);
}

h3 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(1.25rem, 1.2vw + 0.8rem, 1.6rem);
}

h4 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 1.1rem;
}

h5 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 1rem;
}

h6 {
  font-family: "Barlow Condensed", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: 0.9rem;
}

.btn, .badge, .nav-link {
  font-family: "Exo 2", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.main-panel::-webkit-scrollbar {
  width: calc(8 * var(--cf));
}

.main-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: calc(4 * var(--cf));
}

.main-panel::-webkit-scrollbar-track {
  background-color: transparent;
}

/* Reset body and layout */
html, body {
  height: 100%;
  margin: 0;
}

/* Theme-aware text helpers */
.white {
  color: #fff;
}

.onBlue {
  color: #F7F7F7;
}

.centered {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.fs-12 {
  font-size: calc(12 * var(--cf));
}

.fs-36 {
  font-size: calc(32 * var(--cf));
}

.fs-48 {
  font-size: calc(48 * var(--cf));
}

.fs-72 {
  font-size: calc(64 * var(--cf));
}

/* Buttons */
button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(8 * var(--cf));
  height: calc(48 * var(--cf));
  padding: calc(4 * var(--cf)) calc(16 * var(--cf));
  font-size: calc(14 * var(--cf));
  width: -moz-fit-content;
  width: fit-content;
  border-radius: calc(12 * var(--cf));
  cursor: pointer;
  background-color: #1E5058;
  color: #fff;
  outline: none;
  box-shadow: none;
}
button:hover {
  background-color: #25606A;
}
button:active {
  background-color: #163D43;
}
button:focus {
  outline: none;
  box-shadow: none;
}
button.light {
  background-color: white;
  color: #1E5058;
  border: 1px solid #1E5058;
}
button.light:hover {
  color: #25606A;
  opacity: 0.9;
}
button.light:active {
  color: #163D43;
  opacity: 0.95;
}
button.wide {
  font-size: calc(24 * var(--cf));
  padding: calc(16 * var(--cf)) calc(32 * var(--cf));
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f3f3f3;
}

/* Header / Footer */
.site-header {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100vw;
  z-index: 1;
}
.site-header .logo {
  cursor: pointer;
}
.site-header .infoLine {
  display: flex;
  justify-content: center;
  min-height: calc(40 * var(--cf));
  background-color: #f5f6f8;
  color: black;
}
.site-header .infoLine > div {
  display: flex;
  align-items: center;
  width: calc(1440 * var(--cf));
}
.site-header .infoLine > div > div {
  padding-left: calc(16 * var(--cf));
  font-size: calc(12 * var(--cf));
}
.site-header .navLine {
  display: flex;
  justify-content: center;
  min-height: calc(80 * var(--cf));
  background-color: #2E2E2E;
  color: white;
}
.site-header .navLine > div {
  display: flex;
  align-items: center;
  width: calc(1440 * var(--cf));
}
.site-header .navLine > div > div {
  font-size: calc(16 * var(--cf));
}
.site-header .navLine .navItem {
  font-size: calc(16 * var(--cf));
  margin-left: calc(24 * var(--cf));
  cursor: pointer;
  color: #F7F7F7;
}
.site-header .navLine .navItem:hover {
  color: #EAEAEA;
}
.site-header .navLine .navItem:active {
  color: #DADADA;
}
.site-header .navLine .navItem.selected {
  color: #E4F5E9;
  font-weight: bolder;
}
.site-header .social {
  margin-right: calc(16 * var(--cf));
  height: calc(26 * var(--cf));
  cursor: pointer;
}
.site-header .social:hover {
  opacity: 0.6;
}
.site-header .social:active {
  opacity: 0.8;
}

/* Main section fills remaining space */
.site-main {
  margin-top: calc(120 * var(--cf));
  padding: 0 calc(20 * var(--cf));
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.module {
  width: 100vw;
  padding: calc(36 * var(--cf)) 0;
}
.module.narrow {
  padding: calc(8 * var(--cf)) 0;
}
.module.midHeight {
  padding: calc(16 * var(--cf)) 0;
}
.module.topZero {
  padding-top: 0;
}
.module > div {
  max-width: calc(1400 * var(--cf));
  margin: 0 calc(20 * var(--cf));
}
.module > div.inner {
  padding: calc(16 * var(--cf));
}
.module.flat {
  background-color: #FFFFFF;
}
.module.blue {
  background-color: #1E5058;
}
.module.green {
  background-color: #8BB4B8;
}

.module1 * {
  padding-bottom: calc(8 * var(--cf));
}

.moduleNav .navCell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  color: #F7F7F7;
}
.moduleNav .navCell .navTitle {
  text-align: center;
  font-size: calc(16 * var(--cf));
  font-weight: bold;
}
.moduleNav .navCell img {
  height: calc(64 * var(--cf));
  filter: invert(100%) sepia(99%) saturate(26%) hue-rotate(195deg) brightness(113%) contrast(94%);
}
.moduleNav .navCell:hover {
  color: #EAEAEA;
}
.moduleNav .navCell:hover img {
  filter: invert(100%) sepia(3%) saturate(406%) hue-rotate(334deg) brightness(112%) contrast(84%);
}
.moduleNav .navCell:active {
  color: #DADADA;
}
.moduleNav .navCell:active img {
  filter: invert(96%) sepia(2%) saturate(45%) hue-rotate(314deg) brightness(93%) contrast(91%);
}

.moduleQuestionnaire {
  color: #F7F7F7;
  cursor: pointer;
}
.moduleQuestionnaire:hover {
  color: #EAEAEA;
}
.moduleQuestionnaire:active {
  color: #DADADA;
}
.moduleQuestionnaire.selected {
  color: #E4F5E9;
  font-weight: bolder;
}

.module2 .category {
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
}
.module2 .category.left {
  margin-right: calc(8 * var(--cf));
}
.module2 .category.right {
  margin-left: calc(8 * var(--cf));
}
.module2 .category * {
  padding-bottom: calc(8 * var(--cf));
}
.module2 .title {
  width: 100%;
  text-align: center;
  font-size: calc(48 * var(--cf));
}
.module2 .text {
  font-size: calc(16 * var(--cf));
}

.module3 {
  /* 👇 Universal fix: all direct children get full width */
}
.module3 .cell {
  height: 100%;
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: calc(8 * var(--cf));
  margin-right: calc(8 * var(--cf));
}
.module3 .cell:hover {
  background-color: #ededed;
}
.module3 .cell > * {
  width: 100%;
  max-width: 100%;
}
.module3 .cell img {
  height: calc(120 * var(--cf));
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: calc(12 * var(--cf));
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: calc(8 * var(--cf));
}
.module3 .title {
  font-size: calc(36 * var(--cf));
  min-height: calc(40 * var(--cf));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.module3 .text {
  font-size: calc(16 * var(--cf));
}
.module3 .cell > .centerFlex {
  margin-top: auto;
  padding-top: calc(16 * var(--cf));
  display: flex;
  justify-content: center;
  width: 100%;
}
.module3 .cell p:last-of-type {
  margin-bottom: 0;
}

.module4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blogRow {
  min-height: calc(100 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blogRow img {
  width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: calc(12 * var(--cf));
  display: block;
  border-radius: calc(8 * var(--cf));
}
.blogRow .title {
  font-size: calc(36 * var(--cf));
  font-weight: bold;
  padding-bottom: calc(8 * var(--cf));
}
.blogRow .teaser {
  font-size: calc(16 * var(--cf));
}

.categoryContainer {
  margin-bottom: calc(24 * var(--cf));
  max-width: calc(1400 * var(--cf));
  display: flex;
  align-items: stretch;
}
.categoryContainer > .col, .categoryContainer > .categoryLeft, .categoryContainer > .categoryRight {
  display: flex;
  flex-direction: column;
}
.categoryContainer .module {
  width: 100%;
  padding: 0;
}
.categoryContainer .module.midHeight {
  margin-top: calc(16 * var(--cf));
}
.categoryContainer .module.rounded {
  border-radius: calc(16 * var(--cf)) !important;
}
.categoryContainer .categoryLeft {
  margin: calc(16 * var(--cf)) 0;
  width: calc(360 * var(--cf));
}
.categoryContainer .categoryLeft > div {
  height: 100%;
  margin-right: calc(16 * var(--cf));
  border: 1px solid #2E2E2E;
  border-radius: calc(8 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
}
.categoryContainer .categoryRight {
  margin: calc(16 * var(--cf)) 0;
  width: calc(360 * var(--cf));
}
.categoryContainer .categoryRight > div {
  height: 100%;
  margin-left: calc(16 * var(--cf));
  border: 1px solid #2E2E2E;
  border-radius: calc(8 * var(--cf));
  background-color: rgba(139, 180, 184, 0.1);
}
.categoryContainer .categoryRight .blogCell {
  padding: calc(16 * var(--cf)) calc(8 * var(--cf));
}
.categoryContainer .categoryRight .blogCell .title {
  font-size: calc(18 * var(--cf));
  font-family: "Exo 2", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
.categoryContainer .categoryRight .blogCell .text {
  font-size: calc(14 * var(--cf));
}
.categoryContainer .categoryRight .blogCell img {
  width: 100%;
}

.categoryTitle {
  border: 1px solid #2E2E2E;
  border-radius: calc(24 * var(--cf));
  background-color: white;
  padding: calc(16 * var(--cf));
}
.categoryTitle * {
  padding-bottom: calc(8 * var(--cf));
}

.categoryModule {
  width: calc(1400 * var(--cf));
}
.categoryModule .categoryCell {
  background-color: white;
  padding: calc(16 * var(--cf));
  border: 1px solid black;
  border-radius: calc(16 * var(--cf));
}
.categoryModule .categoryCell .row {
  margin-top: calc(12 * var(--cf));
}
.categoryModule .categoryCell .indent {
  padding-left: calc(24 * var(--cf));
}
.categoryModule .categoryCell .shallowIndent {
  padding-left: calc(8 * var(--cf));
}
.categoryModule .categoryCell h3 {
  font-size: calc(36 * var(--cf));
}
.categoryModule .categoryCell h4 {
  font-size: calc(24 * var(--cf));
  margin-top: calc(12 * var(--cf));
}
.categoryModule .categoryCell .text {
  font-size: calc(16 * var(--cf));
}
.categoryModule .categoryCell .text.spacer {
  font-size: calc(4 * var(--cf));
}
.categoryModule .categoryCell.left {
  margin-right: calc(8 * var(--cf));
}
.categoryModule .categoryCell.right {
  margin-left: calc(8 * var(--cf));
}

/* Make sibling columns match height */
.equalHeight {
  display: flex;
  align-items: stretch;
}

/* All equal-height columns become flex containers */
.equalHeight > [class*=col-],
.equalHeight > .adsBlock,
.equalHeight > .brandsBlock {
  display: flex;
}

/* -------------------- */
/* brandsBlock version  */
/* -------------------- */
.brandsBlock {
  flex-direction: column;
}

/* same spacer reuse */
.adSpacer {
  height: calc(8 * var(--cf));
}

/* HEIGHT RATIOS: slider = 1, questionnaire = 2 */
.slider {
  padding: calc(16 * var(--cf));
  flex: 1 1 0;
}

.questionaireBox {
  flex: 2 1 0;
  background: #E4F5E9;
  border: 1px solid #DDDDDD;
  border-radius: calc(20 * var(--cf));
  padding: calc(16 * var(--cf));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.readMoreButton {
  display: flex;
  align-items: center;
  height: calc(40 * var(--cf));
  color: #41729F;
  font-size: calc(16 * var(--cf));
  cursor: pointer;
}
.readMoreButton:hover {
  color: #4D88BF;
  border-color: #4D88BF;
  font-weight: bold;
}
.readMoreButton:active {
  color: #335A7A;
  border-color: #335A7A;
}

.slider-wrapper {
  display: flex;
  justify-content: space-around; /* space-around layout */
  align-items: center;
  width: 100%;
  min-height: calc(100 * var(--cf)); /* adjust as needed */
  overflow: hidden;
}

.slider-wrapper img {
  max-width: 20%; /* 4 images in a row */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}

.slider-wrapper img:hover {
  transform: scale(1.03);
  opacity: 1;
  cursor: pointer;
}

.site-footer {
  padding: calc(24 * var(--cf)) 0;
  flex-shrink: 0;
  width: 100%;
  background-color: #2E2E2E;
  color: white;
}
.site-footer > div {
  max-width: calc(1440 * var(--cf));
  padding: 0 calc(20 * var(--cf));
}
.site-footer .footerLink {
  font-size: calc(16 * var(--cf));
}
.site-footer .right {
  display: flex;
  justify-content: end;
}

/* Center panel and limit width */
.main-panel {
  position: relative;
  max-width: calc(1440 * var(--cf));
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--background);
  box-shadow: 0 calc(4 * var(--cf)) calc(12 * var(--cf)) rgba(0, 0, 0, 0.08);
}
.main-panel .mainImage {
  position: relative;
  display: flex;
  align-items: center;
}
.main-panel .mainImage img {
  width: 100%;
}
.main-panel .mainImage h1, .main-panel .mainImage p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

#categories {
  display: flex;
  justify-content: center;
}
#categories .categoryCell {
  padding: calc(16 * var(--cf));
}
#categories .categoryCell > div {
  background-color: white;
  border: 1px solid black;
  border-radius: calc(12 * var(--cf));
}
#categories .categoryCell > div img {
  width: 100%;
  border-radius: calc(12 * var(--cf)) calc(12 * var(--cf)) 0 0;
}
#categories .categoryCell > div:hover {
  background-color: #ededed;
}
#categories .categoryCell .title {
  margin: calc(16 * var(--cf)) 0;
  font-size: calc(16 * var(--cf));
  font-weight: bold;
  text-align: center;
}
#categories .categoryCell button {
  margin-top: unset;
  margin-bottom: calc(16 * var(--cf));
}

#blogList {
  margin: calc(16 * var(--cf)) 0;
}
#blogList .blogItem {
  border: calc(1 * var(--cf)) solid black;
  border-radius: calc(12 * var(--cf));
  min-height: calc(80 * var(--cf));
  padding: calc(8 * var(--cf));
  margin-bottom: calc(16 * var(--cf));
}
#blogList .blogItem .blogCell {
  width: 100%;
  height: 100%;
  padding-right: calc(16 * var(--cf));
}
#blogList .blogItem .blogCell .imageContainer {
  padding: calc(8 * var(--cf));
  display: flex;
  align-items: center;
}
#blogList .blogItem .blogCell .imageContainer img {
  max-width: 100%;
  border-radius: calc(8 * var(--cf));
}
#blogList .blogItem .blogCell .col > * {
  margin-bottom: calc(8 * var(--cf));
}
#blogList .blogItem .blogCell .date {
  font-size: calc(13 * var(--cf));
  color: gray;
}
#blogList .blogItem .blogCell .blogLink {
  font-size: calc(15 * var(--cf));
  color: blue;
  cursor: pointer;
}
#blogList .blogItem.right .date, #blogList .blogItem.right .title, #blogList .blogItem.right p {
  text-align: end;
}
#blogList .blogItem.right .blogCell {
  padding-right: unset;
}
#blogList .blogItem.right p.two-row-ellipsis-right {
  text-align: unset;
  padding-right: calc(8 * var(--cf));
}

@media (max-width: 1440px) {
  .module {
    padding: 0px calc(20 * var(--cf)) !important;
  }
}/*# sourceMappingURL=cati.css.map */