@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.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
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*: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;
  -moz-user-select: auto;
       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;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::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;
  line-break: after-white-space;
  -moz-user-select: auto;
       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;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background-color: #F2F2F2;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  line-height: 1.25;
  font-weight: 200;
}

h1, h2, h3, h4 {
  margin: 1em 0 0.5em;
  font-weight: 500;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 0.5em;
}

ul, ol {
  margin: 1em 0;
  margin-left: 2.6rem;
}

ul {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}

nav ul, nav ol {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-content {
  width: 96%;
  margin: auto;
  max-width: 1440px;
}
.main-content img {
  border-radius: 5px;
}
.main-content .page-content {
  max-width: 700px;
  margin-bottom: 60px;
}
.main-content .page-content em {
  font-style: italic;
}
.main-content .page-content strong {
  font-weight: 400;
}
.main-content a {
  color: #0E3842;
  position: relative;
}
.main-content a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0E3842;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-content a:hover::before {
  transform: scaleX(1);
}
.main-content a.button:before {
  display: none;
}

.block:not(.block-heading) {
  margin-bottom: 60px;
}
@media all and (min-width: 500px) {
  .block:not(.block-heading) {
    margin-bottom: 80px;
  }
}

form .honeypot {
  position: absolute;
  left: -9999px;
}
form .form-group {
  position: relative;
  margin-top: 2rem;
}
form .form-group label {
  position: absolute;
}
form .form-group input {
  position: relative;
  background-color: #F2F2F2;
  font-size: 1.8rem;
  border-bottom: 1px solid #000;
  width: 100%;
  max-width: 300px;
}
form .form-group-textarea {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
form .form-group-textarea label {
  font-size: 1.8rem;
}
form .form-group-textarea textarea {
  height: 100px;
  border: 1px solid #000;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  padding: 5px;
}
form .button {
  display: flex;
  border: 1px solid #0E3842;
  padding: 12px;
  text-transform: uppercase;
  font-size: 1.4rem;
  flex-grow: 0;
  align-self: flex-start;
  font-weight: 200;
  border-radius: 5px;
  transition: all 0.3s ease;
}
form .button:hover {
  background-color: #0E3842;
  color: #F2F2F2;
}

.button {
  display: flex;
  border: 1px solid #0E3842;
  padding: 12px;
  text-transform: uppercase;
  font-size: 1.4rem;
  flex-grow: 0;
  align-self: flex-start;
  font-weight: 200;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #0E3842;
  color: #F2F2F2;
}

.main-content figure {
  opacity: 0;
}
.main-content figure.fade-in {
  animation: slideIn 0.8s ease 0.3s forwards;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}
.site-header {
  height: 60px;
  margin: 10px 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.site-header .site-logo {
  height: 42px;
}
.site-header .logo-main {
  display: none;
}
.site-header .main-menu {
  display: none;
}
@media all and (min-width: 500px) {
  .site-header {
    justify-content: space-between;
  }
  .site-header .logo-main {
    display: flex;
  }
  .site-header .logo-mobile {
    display: none;
  }
  .site-header .main-menu {
    display: flex;
  }
  .site-header .main-menu li a {
    padding: 5px 0;
    margin-left: 20px;
    position: relative;
  }
  .site-header .main-menu li a:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #0E3842;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .site-header .main-menu li a:hover::before {
    transform: scaleX(1);
  }
  .site-header .main-menu li.current-page a:before {
    transform: scaleX(1);
  }
}
@media all and (min-width: 769px) {
  .site-header {
    height: 80px;
  }
  .site-header .site-logo {
    height: 50px;
  }
}

.site-footer {
  background-color: #0E3842;
  background-image: url("/assets/images/footer_logo.png");
  background-position: top 20px right 20px;
  background-size: 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.site-footer .content {
  display: flex;
  flex-direction: column;
  color: #F2F2F2;
  width: 96%;
  margin: auto;
  text-transform: uppercase;
  line-height: 1.5;
}
.site-footer a {
  color: #F2F2F2;
}
.site-footer .site-info {
  margin-bottom: 2em;
}
.site-footer .site-info h3 {
  margin-bottom: 1em;
  font-size: 1.6rem;
}
.site-footer .site-info p {
  margin: 0;
  font-size: 1.2rem;
}
.site-footer .footer-menu ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
}
.site-footer .footer-menu ul li {
  margin-bottom: 5px;
}
.site-footer .footer-menu ul a {
  font-weight: 400;
  font-size: 1.6rem;
  position: relative;
}
.site-footer .footer-menu ul a:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #F2F2F2;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.site-footer .footer-menu ul a:hover::before {
  transform: scaleX(1);
}
@media all and (min-width: 500px) {
  .site-footer {
    flex-direction: row;
    flex-wrap: wrap;
    background-size: 90px;
  }
  .site-footer .site-info {
    width: 100%;
  }
  .site-footer .footer-menus {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .site-footer .footer-menus .footer-menu {
    width: 50%;
  }
}
@media all and (min-width: 769px) {
  .site-footer {
    background-position: 20px 20px;
    height: 200px;
  }
  .site-footer .content {
    margin-left: 25%;
    flex-direction: row;
  }
  .site-footer .content .site-info {
    display: flex;
    flex-direction: column;
    width: 25%;
  }
  .site-footer .content .footer-menus {
    width: 50%;
  }
  .site-footer .content .footer-menus ul {
    margin-top: 1em;
  }
}
@media all and (min-width: 1024px) {
  .site-footer .content {
    max-width: 1440px;
    margin-left: 0;
    padding-left: 15%;
  }
  .site-footer .content .footer-menus {
    width: 33%;
    margin-left: auto;
  }
}

.mobile-menu .toggle-menu {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0E3842;
  color: #F2F2F2;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  text-align: center;
}
.mobile-menu nav {
  position: relative;
  overflow: hidden;
}
.mobile-menu nav .main-menu {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #F2F2F2;
  background: #0E3842;
  width: 200px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  -moz-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.33);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: all 0.3s ease;
}
.mobile-menu nav .main-menu a {
  display: flex;
  color: #F2F2F2;
  padding: 8px 16px;
}
.mobile-menu.closed nav .main-menu {
  transform: translate(250px);
}
.mobile-menu.closed .hideIfClosed {
  display: none;
}
.mobile-menu.open .hideIfOpen {
  display: none;
}
@media all and (min-width: 500px) {
  .mobile-menu {
    display: none;
  }
}

.hero-block .hero {
  position: relative;
  height: 100vw;
}
.hero-block .hero .hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero-block .hero .overlay {
  position: absolute;
  background-color: #0E3842;
  opacity: 0.5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-block .hero .headline {
  position: absolute;
  margin: 0;
  top: 4px;
  left: 4px;
  color: #5F8993;
  text-transform: uppercase;
  font-size: 2.4rem;
  z-index: 3;
}
.hero-block .hero .wordmark {
  position: absolute;
  left: 2%;
  width: 96%;
  bottom: 2%;
  z-index: 4;
}
@media all and (min-width: 500px) {
  .hero-block .hero {
    height: 80vh;
  }
  .hero-block .hero .headline {
    top: 8px;
    left: 8px;
    max-width: 75%;
    font-size: 3.2rem;
  }
}
@media all and (min-width: 769px) {
  .hero-block .hero .headline {
    max-width: 400px;
    font-size: 3.5rem;
  }
  .hero-block .hero .wordmark {
    bottom: 3%;
  }
}
@media all and (min-width: 1024px) {
  .hero-block .hero {
    height: 85vh;
    min-height: 600px;
  }
  .hero-block .hero .headline {
    max-width: 600px;
    font-size: 5.4rem;
  }
}

.linklist-block {
  margin-bottom: 80px;
}
.linklist-block h2 {
  margin-bottom: 0;
  font-weight: 200;
  margin-bottom: 0.1em;
  font-size: 3.8rem;
}
.linklist-block h3 {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #A2A2A2;
  font-weight: 200;
}
.linklist-block h3 a {
  color: #A2A2A2;
  position: relative;
}
.linklist-block h3 a:before {
  display: none;
}
.linklist-block h3 a:after {
  content: "";
  height: 14px;
  width: 10px;
  background-image: url(/assets/icons/caret_right.svg);
  background-size: 6px;
  background-repeat: no-repeat;
  position: absolute;
  right: -16px;
  top: 2px;
  padding-left: 4px;
  transition: right 0.3s ease;
  pointer-events: none;
}
.linklist-block h3 a:hover::after {
  right: -22px;
}
.linklist-block article {
  display: flex;
  border-top: 1px solid #000;
  justify-content: center;
  text-align: center;
}
.linklist-block article:last-of-type {
  border-bottom: 1px solid #000;
}
.linklist-block article a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  flex-grow: 1;
  font-weight: 700;
  color: #000;
  text-align: center;
  transition: font-size 0.2s ease;
}
.linklist-block article a:before {
  display: none;
}
.linklist-block article a:hover {
  font-size: 2.2rem;
}
@media all and (min-width: 500px) {
  .linklist-block .services {
    display: flex;
    justify-content: space-between;
  }
  .linklist-block .services article {
    width: 30%;
    border-bottom: 1px solid #000;
    position: relative;
  }
  .linklist-block .services article:not(:last-of-type):after {
    content: "";
    position: absolute;
    top: -1px;
    right: -9%;
    height: 82px;
    border-right: 1px solid #000;
  }
}
@media all and (min-width: 769px) {
  .linklist-block .services article {
    display: flex;
    align-items: center;
    height: 160px;
  }
  .linklist-block .services article:not(:last-of-type):after {
    height: 160px;
  }
}

.block-ctalist {
  margin-bottom: 40px;
}
.block-ctalist .cta-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}
.block-ctalist .cta-block figure {
  height: 96vw;
  overflow: hidden;
  width: 96vw;
}
.block-ctalist .cta-block img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.block-ctalist .cta-block .info {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
}
.block-ctalist .cta-block .info > *:not(a) {
  margin-bottom: 1.2rem;
}
.block-ctalist .cta-block .container {
  display: flex;
  flex-direction: column;
}
.block-ctalist .cta-block .button {
  display: flex;
  border: 1px solid #0E3842;
  padding: 12px;
  text-transform: uppercase;
  font-size: 1.4rem;
  flex-grow: 0;
  align-self: flex-start;
  font-weight: 200;
  border-radius: 5px;
}
@media all and (min-width: 769px) {
  .block-ctalist .cta-block {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .block-ctalist .cta-block:first-of-type {
    padding-top: 20px;
    border-top: 1px solid #000;
  }
  .block-ctalist .cta-block:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .block-ctalist .cta-block:nth-of-type(even) .info {
    align-items: flex-end;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #000;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .block-ctalist .cta-block:nth-of-type(even) .info .container {
    align-items: flex-end;
  }
  .block-ctalist .cta-block:nth-of-type(even) .info .text {
    justify-content: right;
  }
  .block-ctalist .cta-block:nth-of-type(even) .info .button {
    align-self: flex-end;
  }
  .block-ctalist .cta-block figure {
    display: flex;
    flex-grow: 1;
    width: 30%;
    height: 40vw;
    align-items: center;
  }
  .block-ctalist .cta-block .info {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #000;
    display: flex;
    flex-grow: 1;
    width: 65%;
    justify-content: center;
  }
  .block-ctalist .cta-block .info .container {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    flex-direction: column;
    max-height: 500px;
  }
  .block-ctalist .cta-block .info .text {
    width: 80%;
  }
}

.sidebyside-block .sidebyside-image {
  margin-bottom: 18px;
}
.sidebyside-block .numbers {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.sidebyside-block .numbers article {
  display: flex;
  flex-direction: column;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
  border-left: 1px solid #000;
}
.sidebyside-block .numbers article .number {
  color: #0E3842;
  font-size: 3rem;
  font-weight: 500;
}
@media all and (min-width: 500px) {
  .sidebyside-block {
    display: flex;
  }
  .sidebyside-block .sidebyside-image {
    display: flex;
    width: 39%;
    height: 50vw;
    margin-right: 2%;
  }
  .sidebyside-block .sidebyside-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sidebyside-block .sidebyside-content {
    width: 59%;
  }
  .sidebyside-block .sidebyside-content .numbers {
    margin-bottom: 0;
  }
}
@media all and (min-width: 769px) {
  .sidebyside-block .sidebyside-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }
  .sidebyside-block .sidebyside-content .numbers {
    margin-top: auto;
    margin-bottom: 20px;
  }
}
@media all and (min-width: 1024px) {
  .sidebyside-block .sidebyside-image {
    width: 49%;
    max-height: 700px;
  }
  .sidebyside-block .sidebyside-content {
    width: 49%;
  }
  .sidebyside-block .sidebyside-content .numbers article {
    margin-bottom: 3rem;
  }
  .sidebyside-block .sidebyside-content .numbers article .number {
    font-size: 5.5rem;
  }
}

.block-contacts article {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.block-contacts article img {
  width: 100%;
}
.block-contacts article h3 {
  margin-bottom: 0.3em;
}
.block-contacts article h4 {
  margin-top: 0;
  margin-bottom: 0.8em;
  font-weight: 200;
}
.block-contacts article a {
  align-self: flex-start;
}
@media all and (min-width: 769px) {
  .block-contacts {
    display: flex;
    justify-content: center;
  }
  .block-contacts article {
    margin-bottom: 0;
    width: 32%;
  }
  .block-contacts article:first-of-type {
    margin-right: 2%;
  }
  .block-contacts article:last-of-type {
    margin-left: 2%;
  }
}

.block-contact h3 {
  font-size: 1.2rem;
  font-weight: 200;
}
.block-contact .subject-list {
  display: flex;
}
.block-contact .subject-list .subject-button {
  font-size: 1.6rem;
  margin-right: 0.5em;
}
.block-contact .subject-list .subject-button.active {
  font-weight: 500;
}
@media all and (min-width: 500px) {
  .block-contact form {
    display: flex;
    justify-content: space-between;
  }
  .block-contact form .layoutgroup {
    width: 48%;
  }
}
@media all and (min-width: 769px) {
  .block-contact {
    display: flex;
  }
  .block-contact .subjects {
    width: 33%;
  }
  .block-contact .subjects .subject-list {
    flex-direction: column;
    width: 33%;
  }
  .block-contact .subjects .subject-list .subject-button {
    font-size: 2.6rem;
    margin-bottom: 0.3em;
  }
  .block-contact form {
    width: 100%;
    justify-content: space-between;
  }
  .block-contact form .layoutgroup.lg-info {
    width: 39%;
  }
  .block-contact form .layoutgroup.lg-message {
    width: 59%;
  }
  .block-contact form .layoutgroup.lg-message textarea {
    width: 100%;
    max-width: 100%;
  }
}

.block-heading h2, .block-heading h3, .block-heading h4 {
  font-weight: 200;
}
.block-heading h2 {
  font-size: 2.8rem;
}
.block-heading h3 {
  font-size: 2.4rem;
}
.block-heading h4 {
  font-size: 2rem;
}
@media all and (min-width: 769px) {
  .block-heading h2 {
    font-size: 3.8rem;
  }
  .block-heading h3 {
    font-size: 3.2rem;
  }
  .block-heading h4 {
    font-size: 2.8rem;
  }
}
