<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* #region settings */

/* #endregion settings */

/* #region Base settings */

@import url(../fonts/Lato2OFLWeb/LatoLatin/latolatinfonts.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: "LatoLatinWeb", sans-serif;
  line-height: 1.492;
}

h1 {
  font-size: calc(38px * 0.98);
  color: #71cdb6;
  padding-bottom: 34px;
  display: block;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: calc(34px * 0.98);
  color: #71cdb6;
  display: block;
  font-weight: bold;
  text-align: left;
  padding-bottom: 40px;
  text-transform: uppercase;
}

h3 {
  font-size: calc(28px * 0.98);
  color: #5e5e5e;
  display: block;
  font-weight: bold;
  text-align: left;
  padding-bottom: 34px;
  text-transform: uppercase;
}

h4 {
  font-size: calc(24px * 0.98);
  color: #5e5e5e;
  display: block;
  font-weight: bold;
  text-align: left;
  padding-bottom: 34px;
  text-transform: uppercase;
}

a {
  color: #71cdb6;
  font-weight: bold;
  text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6),
:is(h1, h2, h3, h4, h5, h6) * {
  font-family: "LatoLatinWebHeavy", sans-serif;
  font-weight: normal;
}

:is(h1, h2, h3, h4, h5, h6) .SiteSelector {
  font-family: "LatoLatinWebHeavy", sans-serif;
  font-weight: normal;
}

.h1pc {
  font-size: calc(24px * 0.98);
  color: #5e5e5e;
  display: block;
  padding-bottom: 34px;
}

.h2pc {
  font-size: calc(22px * 0.98);
  color: #5e5e5e;
  text-align: left;
  padding-bottom: 40px;
}

.h3pc {
  font-size: calc(22px * 0.98);
  color: #5e5e5e;
  display: block;
  text-align: left;
  padding-bottom: 34px;
}

.h4pc {
  font-size: calc(18px * 0.98);
  color: #5e5e5e;
  display: block;
  text-align: left;
  padding-bottom: 34px;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  display: block;
}

p.link-no-style a {
  font-weight: normal;
}

.link-no-style a {
  color: inherit;
}

.link-no-style-white a {
  color: #ffffff;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}

/* #endregion Base settings */

/* #region Header settings */

header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: #0e0c29;
  z-index: 9;
  height: auto;
  padding-bottom: 15px;
  transition: all 0.3s;
  min-height: 75px;
}

header .header-container {
  display: flex;
  height: inherit;
  flex-direction: row;
}

header .site-logo {
  width: 200px;
  float: left;
  margin-left: 7%;
  padding-top: 26px;
  z-index: 1;
  transition: all 0.3s;
}

header .navigation-container {
  float: right;
  padding-top: 26px;
  width: 100%;
}

.navigation {
  float: left;
  width: 100%;
  transition: all 0.3s;
}

.navigation ul {
  flex-wrap: wrap;
  list-style: none;
  margin: 0px;
  float: left;
  height: 100%;
  width: inherit;
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  max-width: 1750px;
}

.navigation ul ul {
  display: none;
  position: absolute;
  z-index: 10;
  background-color: #0e0c29;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 12px;
}

.navigation ul li:hover &gt; ul {
  display: block;
}

.navigation li {
  margin-left: 1%;
}

.navigation li a {
  font-size: calc(13px * 0.98);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.6px;
  display: block;
  padding-bottom: 4px;
  line-height: 1.5;
  white-space: nowrap;
  transition: 0.2s 5s;
}

.menu-item {
  border-bottom: 3px solid transparent;
  margin-top: 4px;
}

.menu-item:hover {
  background-color: transparent;
  border-bottom-color: #fff;
}

.menu-item.menu-item-has-children:hover {
  border-bottom: 0;
}

.observatory-toggle-nav {
  display: none;
  overflow: hidden;
}

.current_page_item &gt; a {
  border-bottom: 3px solid #ffffffc9;
  margin-top: 4px;
}

@media screen and (max-width: 600px) {
  /* Hide child menu items by default */
  .navigation ul ul {
    display: none;
    position: static;
    background-color: transparent;
    padding: 0;
  }

  /* Show child menu items when parent is active */
  .navigation ul li.active &gt; ul {
    display: block;
  }

  /* Style child menu items */
  .navigation ul ul li {
    float: none;
    margin-top: 10px;
    margin-left: 20px; /* Indent child items for clarity */
  }
  .navigation ul {
    display: none;
  }

  .observatory-toggle-nav {
    display: block;
    float: right;
    margin-right: 24px;
  }
  /* 
    The "responsive" class is added to the topnav with JavaScript when the user 
    clicks on the icon. This class makes the topnav look 
    good on small screens (display the links vertically instead of horizontally) 
    */
  .navigation.responsive {
    position: relative;
    /* position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0e0c29;
    overflow: auto; 
    z-index: 1000;  */
  }

  .navigation.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navigation.responsive ul {
    float: none;
    display: block;
    text-align: left;
  }

  .navigation.responsive .dropdown {
    float: none;
  }

  .navigation.responsive .dropdown-content {
    position: relative;
  }

  .navigation.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* #endregion Header settings */

/* #region Editor color templates */

.has-observatory-highlight-color {
  color: #71cdb6;
}

.has-observatory-highlight-background-color {
  background-color: #71cdb6;
}

.has-observatory-body-color {
  color: #5e5e5e;
}

.has-observatory-body-background-color {
  background-color: #5e5e5e;
}

.has-observatory-black-color {
  color: #000000;
}

.has-observatory-black-background-color {
  background-color: #000000;
}

.has-observatory-white-color {
  color: #ffffff !important;
}

.has-observatory-white-background-color {
  background-color: #ffffff !important;
}

/* #endregion Editor color templates */

/* #region Pattern settings */

/* Progressive scaling */
.wp-block-cover-full-width ~ * {
  margin-left: max(30px, min(calc(35% - 310px), 25%));
  margin-right: max(30px, min(calc(35% - 310px), 25%));
}

@media only screen and (min-width: 1200px) {
  .qvidja-image {
    width: 800px !important;
    height: 500px !important;
  }
}

@media only screen and (max-width: 640px) {
  .wp-block-cover-full-width ~ * {
    margin-left: 0%;
    margin-right: 0%;
  }
}

.wp-block-cover-full-width:has(.o-cover-subpage) {
  position: sticky;
  top: 81px;
  z-index: -9999;
}

.o-cover-subpage {
  position: sticky;
  top: 0;
  z-index: -9999;
}

/* Intro pattern block */
.intro-box-with-link {
  padding-top: 64px;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 16px;
  position: relative;
  top: -64px;
  z-index: 1;
}

.intro-box-with-link p a {
  color: white;
}

/* Case pattern blocks */
.observatory-case .wp-block-columns {
  gap: 0em;
  margin-bottom: 0em;
}

.observatory-case .wp-block-image {
  margin: 0 0 0em;
}

.observatory-case-column {
  position: relative;
  min-height: inherit;
  height: inherit;
}

.observatory-case-column &gt; figure {
  height: 100%;
  width: 100%;
}

.observatory-case-column &gt; figure &gt; img {
  object-fit: cover;
  height: calc(100% + 1px); /* Fix for Chrome layout bug */
  width: 100%;
}

.observatory-case-row {
  position: relative;
  bottom: 0;
  margin-bottom: 16px;
  margin-left: 5%;
}

.observatory-case-column &gt; h4 {
  padding: 5%;
}

.observatory-case-column &gt; h2 {
  padding: 5%;
}

.observatory-case-column &gt; p {
  padding: 0 5% 0 5%;
}

.wp-block-columns.cols-align-bottom .wp-block-column {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wp-block-columns.cols-align-bottom .wp-block-column &gt; * {
  margin-top: 0;
}

.wp-block-columns.cols-align-bottom .wp-block-column &gt; :last-child {
  margin-top: auto;
}

.title-p a {
  padding: 16px 64px;
}

/* Style the svg in buttons */
.wp-block-button__link {
  display: flex;
  align-items: center;
}

.wp-block-button__link svg {
  width: 30px;
  margin-left: 10px;
}

.wp-block-button__link svg path {
  fill: #fff;
}

/* #endregion Pattern settings */

/* #region Styling for home page */
.o-cover {
  min-height: 600px;
}

.o-front-arrow-right-green &gt; figure {
  width: 20px;
}

.o-case-gap {
  gap: 0em;
}

.qvidja-image {
  width: 700px;
  height: 400px;
  overflow: hidden;
}

.qvidja-image figure {
  width: inherit;
  height: inherit;
}

/* #endregion Styling for home page */

.o-page-overlay {
  background-color: rgb(255 255 255 / 90%);
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 2%;
  top: -64px;
  position: relative;
}

#o-case-rows .o-case-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.o-case-title {
  text-align: left;
  color: white;
  align-self: start;
  display: flex;
}

.o-case-description {
  color: white;
}

.o-description-box {
  background: #71cdb6;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding-top: 5%;
  padding-left: 5%;
}

.o-case-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.o-case-row-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.o-inline-content {
  padding-left: 2%;
  padding-right: 2%;
}

/* #region Styling for about page */

.logo-background-box img {
  background-color: lightgray;
  border: solid 1px;
  margin: 16px;
  padding: 16px;
}

.o-center-youtube {
  text-align: center;
}

/* #endregion Styling for about page */

/* #region Footer settings */

footer {
  position: absolute;
  overflow: hidden;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 1);
  margin-top: 64px;
}

footer .footer-area-contact {
  background: #0e0c29;
  text-align: center;
}

.footer-area-contact-contacts {
  padding-bottom: 2%;
}

.footer-contact-translation {
  padding-top: 3%;
}

.footer-area-logos {
  margin-left: 20%;
  margin-right: 20%;
}

section.footer-area-logos &gt; div:first-child &gt; div:first-child {
  max-width: 75%;
}

section.footer-area-logos &gt; div:first-child &gt; div:nth-child(2) {
  max-width: 25%;
}

.footer-area-contact a {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  color: white;
}

/* #endregion Footer settings */
</pre></body></html>