@charset "UTF-8";
/* 250px */ /***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* X-Small devices (portrait phones, less than 576px and up) */
#wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "container" "footer";
  /* header row */
  /* footer row */
}
#wrapper #header {
  grid-area: header;
  position: sticky;
  top: 0;
  /* !! use: background-color: #XYZ !!; */
}
#wrapper #container {
  grid-area: container;
  /* left column */
  /* main column */
  /* right column */
  display: grid;
  grid-template-areas: "main";
}
#wrapper #container #left {
  grid-area: left;
  display: none;
}
#wrapper #container #main {
  grid-area: main;
  padding-top: 24px;
}
#wrapper #container #right {
  grid-area: right;
  padding-top: 24px;
  display: none;
}
#wrapper #footer {
  grid-area: footer;
}
#wrapper .inside {
  padding: 24px 24px 24px 24px;
}
#wrapper .layout-from-size--s, #wrapper .layout-from-size--m, #wrapper .layout-from-size--l, #wrapper .layout-from-size--xl, #wrapper .layout-from-size--xxl {
  display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #wrapper .layout-from-size--s {
    display: block;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  body {
    font-size: 1.2em;
  }
  #wrapper .layout-from-size--m {
    display: block;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #wrapper #container {
    display: grid;
    grid-template-columns: 300px minmax(692px, auto);
    grid-template-areas: "left main";
  }
  #wrapper #container #left {
    padding-top: 24px;
    display: block;
  }
  #wrapper .layout-from-size--l {
    display: block;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  body {
    font-size: 1.4em;
    line-height: 1.3em;
  }
  #wrapper #container {
    display: grid;
    grid-template-columns: 300px minmax(900px, auto);
  }
  #wrapper .layout-from-size--xl {
    display: block;
  }
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #wrapper .layout-from-size--xxl {
    display: block;
  }
}
/* XXX-Large devices (larger desktops, 1600px and up) */
@media (min-width: 1600px) {
  #wrapper #container {
    grid-template-columns: 300px 1300px;
    margin-left: auto;
    margin-right: auto;
  }
  #header .inside,
  #footer .inside {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.layout-grid--1-1, .layout-grid--2-2 {
  display: grid;
  grid-template-columns: 50% 50%;
}
.layout-grid--1-3 {
  display: grid;
  grid-template-columns: 25% 75%;
}
.layout-grid--3-1 {
  display: grid;
  grid-template-columns: 75% 25%;
}
.layout-grid--1-2 {
  display: grid;
  grid-template-columns: 33% 66%;
}
.layout-grid--2-1 {
  display: grid;
  grid-template-columns: 66% 33%;
}
.layout-grid--1-1-1 {
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.layout-grid--1-1-1-1 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.layout-grid-l-display--inline div:not(:first-child) {
  margin-top: 6px;
}
.layout-grid-m-display--inline-1-1 div, .layout-grid-m-display--inline-1-1-1 div, .layout-grid-m-display--inline-1-1-1-1 div, .layout-grid-l-display--inline-1-1 div, .layout-grid-l-display--inline-1-1-1 div, .layout-grid-l-display--inline-1-1-1-1 div {
  margin-bottom: 12px;
}

/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .layout-grid-m-display--inline-1-1 {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .layout-grid-m-display--inline-1-1-1 {
    display: grid;
    grid-template-columns: 33% 33% 33%;
  }
  .layout-grid-m-display--inline-1-1-1-1 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .layout-grid-l-display--inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .layout-grid-l-display--inline-1-1 {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .layout-grid-l-display--inline-1-1-1 {
    display: grid;
    grid-template-columns: 33% 33% 33%;
  }
  .layout-grid-l-display--inline-1-1-1-1 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
  }
  .layout-grid-l-display--inline div {
    margin-top: 6px;
    margin-right: 6px;
  }
}
/* X-Large devices (large desktops, 1200px and up) */
/* XX-Large devices (larger desktops, 1400px and up) */
#wrapper {
  /* header row */
}
#wrapper #header #header-right {
  text-align: right;
}
#wrapper #header #menu--close {
  display: none;
}
#wrapper #container {
  /* left column */
}
#wrapper #container #left {
  position: fixed;
  width: 100vw;
  /* main column */
}
#wrapper #container #left #menu ul li {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#wrapper #container #left #menu ul li:first-child {
  padding-top: 0em;
}

/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #wrapper #header #header-right {
    display: none;
  }
  #wrapper #container #left {
    position: static;
    display: block !important;
    background-color: transparent;
    width: 100%;
  }
}
body {
  font-family: sans-serif;
}

#wrapper {
  /* header row */
}
#wrapper #header {
  line-height: 1.5em;
}
#wrapper #container #main h1 {
  margin-top: 1.25em;
  font-size: 1.25em;
  margin-bottom: 0.95em;
}
#wrapper #container #main h2 {
  margin-top: 1.2em;
  font-size: 1.2em;
  margin-bottom: 0.9em;
}
#wrapper #container #main h3 {
  margin-top: 1.15em;
  font-size: 1.15em;
  margin-bottom: 0.85em;
}
#wrapper #container #main h4 {
  margin-top: 1.1em;
  font-size: 1.1em;
  margin-bottom: 0.8em;
}
#wrapper #container #main h5 {
  margin-top: 1.05em;
  font-size: 1.05em;
  margin-bottom: 0.75em;
}
#wrapper #container #main h6 {
  margin-top: 1em;
  font-size: 1em;
  margin-bottom: 0.7em;
}
#wrapper #container #main h1 {
  margin-top: 0em;
}
#wrapper #container #main p {
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: justify;
  text-align-last: none;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 1.7em;
}
#wrapper #container #main ul li {
  margin-left: 8px;
  padding-left: 9px;
  list-style: "·";
}
#wrapper #container #main ul li:not(:first-child) {
  margin-top: 6px;
}
#wrapper #container #main ul li:not(:last-child) {
  margin-bottom: 6px;
}
#wrapper #container #main table {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
}
#wrapper #container #main table tr td,
#wrapper #container #main table tr th {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  padding: 12px;
}
#wrapper #container #main table tr td:first-child,
#wrapper #container #main table tr th:first-child {
  padding: 12px 12px 12px 0px;
}
#wrapper #container #main table tr td:last-child,
#wrapper #container #main table tr th:last-child {
  border-right: none;
}
#wrapper #container #main table tr:last-child td {
  border-bottom: none;
}
/* 
.myColor-9 { color: #647d8f; } // Lynch
.myColor-10 { color: #596f80; } // Blue Bayoux
.myColor-11 { color: #cfdce6; } // Botticelli
.myColor-12 { color: #6096bf; } // Hippie Blue
*/

body {
  background-color: #fff;
  color: #303033;
  text-shadow: 1px 1px 1px rgba(125, 125, 125, 0.10);
}

#header {
  background-color: #004f79;
  color: #fff;
  font-size: 1.5em;
  text-shadow: 1px 1px 1px #000;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.75);
}

#container #left {
  background-color: #fff;
  border-top: #efefef solid 1px;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
}

#menu ul li:not(:last-child) {
  border-bottom: 1px solid rgb(0, 79, 121, 0.25);
}

#menu .active {
  color: #004f79;
}
#menu .active > :after {
	content: " 〉";
}
#footer {
  background-color: #34495e;
  color: #efefef;
  text-shadow: 1px 1px 1px #000; 
  font-size: 0.75em;
  line-height: 1.75em;
  border-top: #2c3e50 solid 1px;
}

#footer ul li{
	list-style: "::";
	margin-left: 0.6em;
	padding-left:0.5em;
}

#main table td, #main table th {
  border-bottom-color: rgb(0, 79, 121, 0.25);
  border-right-color: rgb(0, 79, 121, 0.25);
}

#main a {
	color: rgb(0, 79, 121, 0.85);
}
#main a:hover{
	color: rgb(0, 79, 121, 0.6);
}

.invisible {
    /* not for accessibility */
    display: none;
}

#main h1,
#main h2,
#main h3,
#main h4,
#main h5,
#main h6 {
    font-weight:bold;
    color:#004f79;
}

#menu strong,
#main strong {
    color:#004f79;
    font-weight:bold;
}

#main p{
	padding-top:0.5em;
	padding-bottom: 0.5em;
}

#wrapper #container #main{
	padding-bottom:48px;
}

/* legacy start */
.service {
    margin-bottom:36px;
    background-color:rgb(0, 79, 121, 0.25); /*#b3d4fc;*/
    
    -webkit-box-shadow:2px 4px 6px rgba(0, 0, 0, 0.25);
    box-shadow:2px 4px 6px rgba(0, 0, 0, 0.25);
    
    -webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	padding-top: 0.75em;
}
.service:hover {
    -webkit-box-shadow:24px 24px 24px rgba(0, 0, 0, 0.25);
    box-shadow:24px 24px 24px rgba(0, 0, 0, 0.25);
}
.service .content-text{
    margin:24px;
}
@media (min-width:992px) {
	.m4d-pattern {
	    display:grid;
	    grid-template-columns: 48.5% 48.5%;
	    grid-gap: 36px;
	}
	.m4d-pattern-left {
	    grid-row: 1;
	    grid-column: 1;
	}
	.m4d-pattern-right {
	    grid-row: 1;
	    grid-column: 2;
	}
}
/* legacy end*/

@media (min-width: 992px) {
  #container #left {
    border-top: none;
    box-shadow: none;
  }
  #container #left nav {
    position: fixed;
  }
}

