<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --mainFontColor: #002756;
  --warningColor: #BB0000;
  --warningTriangle: #E78C07;
  --mainFontColor: #002756;
}

.btn-home-page {
  padding: 0.75em 2.5em;
  border-radius: 3px;
  background-color: #FF8029;
  border-color: #FFB37F;
  color: white;
}

div.home-photo {
  background-position: 0px 0px;
  background-image: url(/images/home-with-logo.jpg?b67a2a28954b62f5069e5af4c297d8ff);
  background-repeat: no-repeat;
  /*background-size: cover;*/
  /*
  padding-top: 125px;*
  padding-bottom: 108px;
  position: relative;
  color: white;
  */
  height: calc(100vh - 176px);
}

@media screen and (max-width: 767px) {
  /* insert styles here */

  div.home-photo {
    background-image: url(/images/home-with-logo-mobile.jpg?22f89b4c2af75ec8b35216a30d92b84f);
    background-size: cover;
    /* The photo is not big enough */
    height: calc(100vh + 336px);
  }
}

@media screen and (min-width: 1921px) {
  /* insert styles here */

  div.home-photo {
    background-size: cover;
    /* The photo is not big enough */
  }
}

div.home-page-info {
  display: none;
  /*
  z-index: 999;
  color: white;
  padding-right: 50px; padding-left: 50px;
  margin-top: calc(35vh - 300px);
  */
}

h1.home-page-title {
  font-weight: 700;
  font-size: 2.86em;
}

h3.home-page-subtitle {
  font-size: 2.5em;
}

p.home-page-text {
  font-size: 1.76em;
}

.home-page-button .btn-orange:hover {
  background-color: #F49158;
  color: white;
}

.home-page-button .btn-home-page {
  font-weight: 600;
}

/*
@include media-breakpoint-up(md) {
    h1.home-page-title {
        font-weight: 700;
        font-size: 4.5em;
    }
    h3.home-page-subtitle {
        font-size: 3.33em;
    }
}
*/

.shadow-dm {
  box-shadow: none;
}

nav.navbar {
  border: none;
}

nav.navbar div.container-fluid {
  justify-content: flex-end;
  /* Force the button to menu display on the right */
}

.navbar-nav {
  margin-bottom: -32px;
  /* Negativem to move below, to overlap the image */
  z-index: 100;
  /* Above the photo */
}

.navbar-brand {
  display: none;
}

</pre></body></html>